Send article to OmniFocus - AppleScript
The last missing link in my OmniFocus workflow: Vienna article reading reminder.
property actionPrefix : "Read "
tell application "Vienna"
tell current article
set theURL to link
set theName to title
end tell
end tell
tell front document of application "OmniFocus"
tell quick entry
make new inbox task with properties {name:(actionPrefix & theName), note:theURL}
activate
select {inbox task 1}
end tell
end tell
Download: send-article-to-omnifocus.scpt


