Skip to content

Instantly share code, notes, and snippets.

@ddhahn
Created February 3, 2013 01:59
Show Gist options
  • Save ddhahn/4700247 to your computer and use it in GitHub Desktop.
Save ddhahn/4700247 to your computer and use it in GitHub Desktop.
Sample progress meter in AutoIT
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