Last active
August 29, 2015 14:00
-
-
Save teddyzetterlund/f4030fcfb6e3e00f0705 to your computer and use it in GitHub Desktop.
Adds a task directly to the OmniFocus inbox for each paragraph in the current clipboard.
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
set _clipboard to get the clipboard | |
set _tasks to paragraphs of _clipboard | |
tell application "OmniFocus" | |
tell default document | |
repeat with _task in _tasks | |
make new inbox task with properties {name:_task} | |
end repeat | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment