Isper Posted October 31, 2005 Posted October 31, 2005 hey all this is kinda a dumb queston, but how do u stop a looping macro????? i checked the help file and couldnt find anything
Developers Jos Posted October 31, 2005 Developers Posted October 31, 2005 (edited) hey allthis is kinda a dumb queston, but how do u stop a looping macro????? i checked the help file and couldnt find anythingWhat is a looping Macro ? To Exit a For..Next, Do..Until or While..Wend you just do an ExitLoop command. Edited October 31, 2005 by JdeB 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.
Isper Posted October 31, 2005 Author Posted October 31, 2005 What I have is a macro that mouseclicks then loops, and i dont know how to deactivated it if im running it besides shuting down and rebooting my computer.
Seber Posted November 1, 2005 Posted November 1, 2005 To elaborate on what Larried said, what I usually do in similar situations is create two hotkeys, one to turn on the macro, one to turn it off, and a variable flag to keep track of it, e.g.... $Active = 0 hotkeyset("^1","TurnOn") ; control-1 turns it on hotkeyset("^2","TurnOff") ; control-2 turns it off while 1 while $Active ; your looping actions go here wend sleep(100) wend func TurnOn() $Active = 1 endfunc func TurnOff() $Active = 0 endfunc
BigDod Posted November 1, 2005 Posted November 1, 2005 What is wrong with the examples in the help file. ; 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 Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
Valuater Posted November 1, 2005 Posted November 1, 2005 Show us your script... The we can really help you 8)
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now