Jump to content

Pause function


Recommended Posts

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?

Link to comment
Share on other sites

  • Developers

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

Which keys are you pressing ? Ctrl and Alt and Shift and p ?

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

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