Jump to content

function to stop the script


Recommended Posts

Hello friends ! muttley

I'm looking for a function to stop the script, not to exit. I want to build in the tray autoit icon two supplementary items: "Stop" will allow you to stop the script, the icon remains in the systray, and then you could run again the script from the "Start" button. Exit() will make the icon to dissapear.

So far I found function break, TraySetPauseIcon, but these are not achieving my goal.

Thanks !

Link to comment
Share on other sites

Search the helpfile for "TogglePause" or look at the example in HotKeySet()

Yeah you wanna say that muttley

; 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
No-life of autoit...what could be better ?LAST SCRIPTS WITH AUTO-IT : CLICK HERE
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...