scriptkitty Posted March 5, 2004 Posted March 5, 2004 Adopted version of Larry's code. This way you can pause the script and restart at any point with one key. Basically a bobbing bird macro with pause. AdlibEnable("pause"); this keeps running at all times till you exit. HotKeySet("{pause}","pauseset"); uses the pause key to change the value of $Pause $Pause = -1 sleep(500) While 1 send("4"); this sends the number 4 key to the active program. sleep(500) ; sleep for .5 second before repeating send("5"); this sends the number 5 key to the active program. sleep(500) Wend; this keeps looping Func pauseset() $Pause = $Pause * -1 EndFunc Func pause() While $Pause = -1 Sleep(500) Wend EndFunc AutoIt3, the MACGYVER Pocket Knife for computers.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now