Jump to content

Recommended Posts

Posted (edited)

I am looking for a way to pause my script using hotkeyset. This is what I have come up with so far and was wondering if there was a better method and if this would even work. I do not have access to autoit at this computer to test, but I will test it tomorrow when I come home.

Hotkeyset("{Pause}", "Pause")
$paused = 0

While $paused = 0 
  ;main script in here
WEnd

Func Pause()
   $paused = 1
EndFunc
Edited by ZebrasInBlankets
  • Moderators
Posted

Straight out of help:

Global $Paused
HotKeySet("{PAUSE}", "TogglePause")

;;;; Body of program would go here;;;;
While 1
    Sleep(100)
WEnd
;;;;;;;;

Func TogglePause()
    $Paused = NOT $Paused
    While $Paused
        sleep(100)
        ToolTip('Script is "Paused"',0,0)
    WEnd
    ToolTip("")
EndFunc

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

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
  • Recently Browsing   0 members

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