Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@pslobo
Created December 10, 2013 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pslobo/7893567 to your computer and use it in GitHub Desktop.
Save pslobo/7893567 to your computer and use it in GitHub Desktop.
A quick first run at solving the problem posed by Rick Stawarz here: https://alpha.app.net/stwrz/post/17003173
tell application "Things"
repeat with todayToDo in to dos of list "Today"
set todoName to name of todayToDo
set todoBody to notes of todayToDo
tell application "Reminders"
set todayList to list named "Today"
tell todayList
make new reminder with properties {name:todoName, body:todoBody}
end tell
end tell
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment