Skip to content

Instantly share code, notes, and snippets.

@EvanLovely
Created May 17, 2014 22:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EvanLovely/2b8571a1bf686256bb04 to your computer and use it in GitHub Desktop.
Save EvanLovely/2b8571a1bf686256bb04 to your computer and use it in GitHub Desktop.
Create a new Apple Reminder with AppleScript
set _name to "name"
set _note to "note"
tell application "Reminders"
make new reminder with properties {name:_name, body:_note}
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment