Created
May 11, 2013 06:18
-
-
Save connor/5559081 to your computer and use it in GitHub Desktop.
Alert'ing the open to-dos for the day in Things.app
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
tell application "Things" | |
repeat with td in to dos of list "Today" | |
set tdName to the name of td | |
set tdStatus to the status of td | |
if tdStatus = open then | |
display dialog tdName | |
end if | |
end repeat | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment