Jump to content

Recommended Posts

Posted

I am looking to pause a script if ^!+p is pressed... this is the script:

HotKeySet("^!+b", "quit")
HotKeySet("^!+p", "pause")

AutoItSetOption("TrayAutoPause", 0)

Func quit()
 MsgBox(64, "Exit", "The question eliminator has exited.")
 Exit
EndFunc

Func pause()
 $Paused = NOT $Paused
 
    While $Paused
        sleep(100)
        TraySetState(4)
    WEnd
 
    TraySetState(8)
EndFunc

MsgBox(64, "Running", "The question eliminator is running. At any time press CTRL-ALT-SHIFT-B to exit." & @CRLF & "You may also press CTRL-ALT-SHIFT-P to pause/unpause the elimitator.")

While 1 
 If WinExists("Question", "OK") Then
  ControlClick("Question", "OK", 1)
 EndIf

 Sleep(500)
WEnd

This is an almost EXACT copy from the help file, as far as pause is concerned, so I'm confused as to why it's not working. Anyone know?

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
×
×
  • Create New...