Matthy Posted March 16, 2008 Posted March 16, 2008 (edited) i want to loop something for a specified time var = 1 $time = 5000 While Sleep($time) _CommSendString('signal') WEnd MsgBox(0,"",$var) this wont work any ideas cheers matthy Edited March 16, 2008 by Matthy
PsaltyDS Posted March 16, 2008 Posted March 16, 2008 i want to loop something for a specified time this wont work any ideas cheers matthy You are looking for TimerInit() and TimerDiff() in the help file: $var = 1 $time = TimerInit() While TimerDiff($time) < 5000 _CommSendString('signal') WEnd MsgBox(0,"",$var) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Matthy Posted March 16, 2008 Author Posted March 16, 2008 thanx tried this once for an other script but wouldnt work so skipped this func. i think i know now what i did wron thanks matthy
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