View Single Post
A customer asked for an applescript that let them add an inbox item when OmniFocus wasn't running. In case that's useful for other folks, here's what I slapped together:

Code:
set itemText to display dialog "Enter text you'd like to add to OmniFocus:" default answer ""
set newItem to text returned of itemText as Unicode text
tell application "OmniFocus" to tell default document
     make new inbox task with properties {name:newItem}
end tell

Last edited by Brian; 2008-03-24 at 03:40 PM..