niceone Posted January 7, 2009 Posted January 7, 2009 I searched the help file what I found I wasn't sure if its what I'm looking for if anyone can help me with this simple bit of code I'd be thankful! HotKeySet("{NUMPAD5}", "Go") While 1 Sleep(50) WEnd func Go() MouseClick("left",729,487,1) sleep(3000) mouseclick("left",515,293,3) sleep(15000) EndFunc I want my program to repeat func Go() after sleeping 15000 until I stop it my self
Josbe Posted January 7, 2009 Posted January 7, 2009 I searched the help file what I found I wasn't sure if its what I'm looking for if anyone can help me with this simple bit of code I'd be thankful! HotKeySet("{NUMPAD5}", "Go") While 1 Sleep(50) WEnd func Go() MouseClick("left",729,487,1) sleep(3000) mouseclick("left",515,293,3) sleep(15000) EndFunc I want my program to repeat func Go() after sleeping 15000 until I stop it my selfWhy not include a call of Go() inside a loop? AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
youknowwho4eva Posted January 7, 2009 Posted January 7, 2009 (edited) I searched the help file what I found I wasn't sure if its what I'm looking for if anyone can help me with this simple bit of code I'd be thankful! HotKeySet("{NUMPAD5}", "Go") HotKeySet("{NUMPAD6}", "stop") While 1 Sleep(50) WEnd func Go() while 1 MouseClick("left",729,487,1) sleep(3000) mouseclick("left",515,293,3) sleep(15000) wend EndFunc func stop() exit EndFunc I want my program to repeat func Go() after sleeping 15000 until I stop it my selfeasy peasy lemon squeezy Edit: notice I changed your code in the quote. Edited January 7, 2009 by youknowwho4eva Giggity
martin Posted January 7, 2009 Posted January 7, 2009 (edited) Removed because I hadn't realized I was repeating what youknowwho4eva had already suggested. Edited January 7, 2009 by martin Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
niceone Posted January 7, 2009 Author Posted January 7, 2009 easy peasy lemon squeezyEdit: notice I changed your code in the quote.thank you! this worked
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