boltc Posted December 5, 2005 Posted December 5, 2005 i want to make a counter for a program what i made.. is it possible to make a counter that increase by 1 every time when the program did something? can someone help me with the code?
Zithen Posted December 5, 2005 Posted December 5, 2005 just create a varible and keep adding 1 to it Dim $x $x = $x + 1
Moderators SmOke_N Posted December 5, 2005 Moderators Posted December 5, 2005 (edited) $counter = 0 While 1 $counter = $counter + 1 If $counter = 100 Then MsgBox(0, "", "Counter = " & $counter) $counter = 0; reset counter EndIf Sleep(25) Wend Edit: Threw a Sleep(25) so the message box didn't pop up so quick so you could see it working. Edited December 5, 2005 by SmOke_N 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