Created
February 3, 2013 01:59
-
-
Save ddhahn/4700247 to your computer and use it in GitHub Desktop.
Sample progress meter in AutoIT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ProgressOn("Progress Meter", "Increments every second", "0 percent") | |
For $i = 10 to 100 step 10 | |
sleep(1000) | |
ProgressSet( $i, $i & " percent") | |
Next | |
ProgressSet(100 , "Done", "Complete") | |
sleep(500) | |
ProgressOff() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment