| Author |
Message |
Forum: Support Topic: trying to force new IE window |
| aRt)Y |
|
Posted: January 13th, 2012, 11:49 pm
|
|
Replies: 13 Views: 267
|
rocktoonz wrote: Unfortunately that's not working either. Takes way too long to enter the URL, and doesn't "go" when it's done typing it out.
You would only need to add an {enter}... well, you finally told us that there's a link you are looking for. So now the members can start helping you. |
|
 |
Forum: Support Topic: trying to force new IE window |
| aRt)Y |
|
Posted: January 13th, 2012, 11:03 pm
|
|
Replies: 13 Views: 267
|
| "nooby" way but does what you want. SetTitleMatchMode, 2 ; http://www.autohotkey.com/docs/commands/SetTitleMatchMode.htm Run, iexplore.exe WinWaitActive, Windows Internet Explorer ; used this because every IE window contains these three words (for me) and it doesn't matter which yo... |
|
 |
Forum: Support Topic: Help Refine PixelSearch Script |
| aRt)Y |
|
Posted: January 9th, 2012, 5:42 pm
|
|
Replies: 7 Views: 181
|
| 3. If this macro doesn't find anything "ErrorLevel" I have it Sending {F24} just cause that's a pretty bogus key, I dont want it to do anything but continue to loop if it dosnt find the pixel. Is there a better way to null / void that out? use return? If ErrorLevel return else .. |
|
 |
Forum: Support Topic: DELETED VERY IMPORTANT FILE - PLEASE HELP |
| aRt)Y |
|
Posted: January 7th, 2012, 11:59 pm
|
|
Replies: 7 Views: 151
|
| Don't you've something like a back-up on a driver? |
|
 |
Forum: Support Topic: Reset DropDownList Selection After Each Use |
| aRt)Y |
|
Posted: January 7th, 2012, 7:26 pm
|
|
Replies: 1 Views: 82
|
| I need is a way to make the controls reset after each use Gui, add, dropdownlist, gChosen vChosen, Test|Test1|Test2|Test3 Gui, show return Chosen: Gui, submit, nohide GuiControl,,chosen, |Test|Test1|Test2|Test3 MsgBox, %chosen% return I am not sure how to solve the part that your controls stop stuc... |
|
 |
Forum: Support Topic: Count of records processed |
| aRt)Y |
|
Posted: January 4th, 2012, 9:18 pm
|
|
Replies: 20 Views: 408
|
| Actually these lines aren't needed at their current position: VERIFICATION TotalCust = 0 ;;;TOTAL NUMBER OF ACCTNUMS READ ON EXCEL SPREADSHEET ValidCust = TotalCust - Invalid ;;;VALID ACCTNUMS FOUND AND PROCESSED InValid = 0 ;;;INVALID ACCTNUMS IN ERROR AND NOT PROCESSED and here InValid := InValid ... |
|
 |
Forum: Support Topic: simple copy |
| aRt)Y |
|
Posted: January 4th, 2012, 9:11 pm
|
|
Replies: 2 Views: 101
|
| Hi, Gui, add, edit, vThunderbox29, thunderbox29 Gui, add, edit, vThunderbox27, Nothing Gui, add, button, gGo, Go Gui, show return go: Gui, submit, nohide controlgettext, fault, Edit1 controlsettext, Edit2, %fault% return The above script is an example, since i know what you are trying to do, there'r... |
|
 |
Forum: Support Topic: Count of records processed |
| aRt)Y |
|
Posted: January 4th, 2012, 8:37 pm
|
|
Replies: 20 Views: 408
|
| Repost your code so i can take a look on it and check where the mistakes/confusions were? |
|
 |
Forum: Support Topic: loop help |
| aRt)Y |
|
Posted: January 4th, 2012, 6:50 pm
|
|
Replies: 1 Views: 83
|
Use this demo script and add your stuff to the label, plus change hotkeys.
By the way, make use of the forum search?  |
|
 |
Forum: Support Topic: unable to break infinite loop |
| aRt)Y |
|
Posted: January 4th, 2012, 6:45 pm
|
|
Replies: 7 Views: 266
|
| In the ger ahk forum, there's a similar topic and since you want 2 keys to turn the loop on/off, you can easily use a settimer. ; ger fourm: http://de.autohotkey.com/forum/post-74326.html#74326 +y:: SetTimer, SendData, 3000 return +x:: SetTimer, SendData, Off return SendData: Send, {Enter}... |
|
 |
Forum: Support Topic: Count of records processed |
| aRt)Y |
|
Posted: January 4th, 2012, 6:42 pm
|
|
Replies: 20 Views: 408
|
| It's just wrong. I don't know if he tested it with more cells if the "balances" of 5 valids/2 invalids keeps but i wouldn't be happy with such a result. And i also told him that something is wrong and it's probably one of the 2 "valid := valid +1" in his scripts. He has to know w... |
|
 |
Forum: Support Topic: Count of records processed |
| aRt)Y |
|
Posted: January 4th, 2012, 5:50 pm
|
|
Replies: 20 Views: 408
|
| Change From Valid = 0 ;;;TEST InValid = 0 ;;;TEST To Total := 0 InValid := 0 Valid := Total - Invalid That's the wrong position and i didnt mean it like that since i also added a MsgBox and there's only ONE in your script so i don't know what the problem is if the "Valid := Total - Invalid&quo... |
|
 |
Forum: Support Topic: double hotkey in one |
| aRt)Y |
|
Posted: January 4th, 2012, 4:12 pm
|
|
Replies: 5 Views: 144
|
Quote: until the specific window that the hotkeys works is closed
I didnt get the difference of the actions1,2,3 before and after the window closed.
Isn't the hotkey the same since it still should do actions1,2,3? |
|
 |
Forum: Support Topic: Swap numbers row with symbols when shift is remapped |
| aRt)Y |
|
Posted: January 4th, 2012, 4:07 pm
|
|
Replies: 5 Views: 156
|
| $+1::SendRaw 1 ; new remapped shift and 1 I get 1!! _ fixed to 111111 $1::SendRaw ! ; when I hit 1 without shift I get ! ; changing the position should have solved the problem (*for me). $+2::SendRaw 2 $2::SendRaw `= $+5::SendRaw 5 $5::SendRaw `% |
|
 |
Forum: Support Topic: How to show coordinates |
| aRt)Y |
|
Posted: January 4th, 2012, 4:01 pm
|
|
Replies: 2 Views: 112
|
Please use the search option of the forum before posting.
Search button -> "mouse tooltip" -> second one.
There you've got 2 options. |
|
 |
| Sort by: |