Scanzee Posted October 31, 2005 Posted October 31, 2005 Can you put an pauze on a loop?! I'm working with a For Next loop statement Thanks Scanzee..
Raindancer Posted October 31, 2005 Posted October 31, 2005 Look at the Sleep() Function. I think it does what you want. Say: "Chuchichäschtli"My UDFs:_PrintImage UDF_WinAnimate UDFGruess Raindancer
MHz Posted October 31, 2005 Posted October 31, 2005 (edited) Damn ,how come you get the easy one's RainDancer ? Edited October 31, 2005 by MHz
Raindancer Posted October 31, 2005 Posted October 31, 2005 Fast Mailserver :-P Say: "Chuchichäschtli"My UDFs:_PrintImage UDF_WinAnimate UDFGruess Raindancer
Moderators SmOke_N Posted October 31, 2005 Moderators Posted October 31, 2005 Also, if you're trying to take control of the loop manually, or even within your script itself, take a look at the HotKeySet in the help file. Examples in the help file: 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 Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
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