| Author |
Message |
Topic: Anyway to check if CURSOR isn't in 'normal' 'pointer' state? |
jg0001
Replies: 3
Views: 114
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 6:28 pm Subject: Anyway to check if CURSOR isn't in 'normal' 'pointer' state? |
Great! The below worked for my purposes...
Loop
{
IfEqual, A_Cursor, Arrow, break ;so long as we are still getting a non regular cursor, wait
Sleep, 0.25 * 1000
} |
Topic: Anyway to check if CURSOR isn't in 'normal' 'pointer' state? |
jg0001
Replies: 3
Views: 114
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 6:11 pm Subject: Anyway to check if CURSOR isn't in 'normal' 'pointer' state? |
Oooh.. thanks for the link. I went through a bunch of other items in the help, but didn't think this may be one of them there variable thingees. Excellent, I'll give it a whirl.
FYI: I previousl ... |
Topic: Nested Loops |
jg0001
Replies: 5
Views: 173
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 6:00 pm Subject: Nested Loops |
| So is there no way then to access in the 2nd loop what the A_Index is of the main loop? |
Topic: Nested Loops |
jg0001
Replies: 5
Views: 173
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 4:53 pm Subject: Nested Loops |
| If I wanted to next a new loop inside an existing loop, will that mess up the %A_Index% variable of the first one? How does this work? |
Topic: Anyway to check if CURSOR isn't in 'normal' 'pointer' state? |
jg0001
Replies: 3
Views: 114
|
Forum: Ask for Help Posted: Fri Jan 07, 2011 3:41 pm Subject: Anyway to check if CURSOR isn't in 'normal' 'pointer' state? |
| Is there a way to check if the cursor isn't in a normal state? For example, I am trying to automate a pull from a webite. After entering various inputs and hitting the respective "GO" key, ... |
Topic: WinWait // Loop question |
jg0001
Replies: 5
Views: 337
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 8:11 pm Subject: WinWait // Loop question |
Ah.. you know, I had that correct the first time, but I guess I must have had something else off. It is working now. Thank you for your quick assist.
So, does WinWait when the loop rolls through ... |
Topic: WinWait // Loop question |
jg0001
Replies: 5
Views: 337
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 8:00 pm Subject: WinWait // Loop question |
Okay... I just re-tested it...
The following DOES WORK while the dialog box comes up (i.e. once the box pops up, the space is sent and the loop continues on):
WinWait, Windows Internet Explorer
S ... |
Topic: WinWait // Loop question |
jg0001
Replies: 5
Views: 337
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 7:52 pm Subject: WinWait // Loop question |
| Does the ErrorLevel reset itself when the next Loop rolls around? That is to say, does it only persist until the next thing which may test it (like another WinWait)? |
Topic: WinWait // Loop question |
jg0001
Replies: 5
Views: 337
|
Forum: Ask for Help Posted: Wed Jan 05, 2011 7:31 pm Subject: WinWait // Loop question |
I am automating a process that uses a LOOP.
The script runs through a few chores, entering info on a website and then tries to download information via a button that is available only if data is av ... |
Topic: How do I make a script wait for a keypress to continue? |
jg0001
Replies: 4
Views: 248
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 9:23 pm Subject: How do I make a script wait for a keypress to continue? |
| Excellent... I don't know how I missed that. |
Topic: How do I make a script wait for a keypress to continue? |
jg0001
Replies: 4
Views: 248
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 8:56 pm Subject: How do I make a script wait for a keypress to continue? |
| In the code below (sends a few different items to a Bloomberg screen), I'd like to replace the Sleep commands with something that will wait for the spacebar to be pressed before continuing. I know a ... |
Topic: How do I make a hotkey out of a CURSOR key? |
jg0001
Replies: 2
Views: 92
|
Forum: Ask for Help Posted: Wed Aug 19, 2009 2:49 pm Subject: How do I make a hotkey out of a CURSOR key? |
Many thanks!
For anyone else that would like my little script, here it is (I switched over to using just the Alt key instead of Ctrl+Alt):
!Down::send {PgDn}
!Up::send {PgUp}
!Left::send {Home ... |
Topic: How do I make a hotkey out of a CURSOR key? |
jg0001
Replies: 2
Views: 92
|
Forum: Ask for Help Posted: Wed Aug 19, 2009 2:10 pm Subject: How do I make a hotkey out of a CURSOR key? |
I'm trying to make an AHK script for my netbook to get around having to use two hands to do Page Down, Page Up, Home & End. (these are Fn keys on top of the cursor keys on my netbook).
I tried ... |
| |