Skip to content

Instantly share code, notes, and snippets.

@cmittendorf
Created October 26, 2014 09:25
Show Gist options
  • Save cmittendorf/8f247f86346813ebc899 to your computer and use it in GitHub Desktop.
Save cmittendorf/8f247f86346813ebc899 to your computer and use it in GitHub Desktop.
As a new feature of OS X Yosemite, you now can display a progress bar from your AppleScript.
set progress total steps to 100
repeat with i from 1 to 100
set progress description to "Item " & i & " of " & 100
set progress additional description to "foobar"
delay 1
set progress completed steps to i
end repeat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment