Created
September 25, 2013 02:56
-
-
Save johanoloflindberg/6694647 to your computer and use it in GitHub Desktop.
Hazel Omnifocus From http://simplicitybliss.com/
This file contains 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 "Finder" to set file_name to (name of theFile) | |
tell application "OmniFocus" | |
set task_title to "Review " & file_name | |
tell default document | |
set newTask to make new inbox task with properties {name:task_title} | |
tell the note of newTask | |
make new file attachment with properties {file name:theFile, embedded:false} | |
end tell | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment