Jump to content

Pause


scriptkitty
 Share

Recommended Posts

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. :whistle:

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...