Jump to content

Recommended Posts

Posted (edited)

I have a script that does certain things until the user ends the script by pressing a hotkey...but how do i add a function that can pause or unpause the script??

Thanks in advance

Edited by ARozanski
Posted (edited)

it's simple... example

HotKeySet('{F2}', 'Pause')
Global $MyVar = True

If $MyVar = True Then
;...
;...
;code...
EndIf

Func Pause()
    $MyVar = Not $MyVar; to switch $MyVar from false to true and vice versa
EndFunc  ;==>Pause
Edited by oMBra
Posted

; Press Esc to terminate script, Pause/Break to "pause"

Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")
HotKeySet("+!d", "ShowMessage")  ;Shift-Alt-d

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

Func Terminate()
    Exit 0
EndFunc

Func ShowMessage()
    MsgBox(4096,"","This is a message.")
EndFunc

# MY LOVE FOR YOU... IS LIKE A TRUCK- #

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