View Single Post
Quote:
Originally Posted by iNik View Post
For any and all of these interfaces, the text will be parsed using the same rules as the mail rule or Quicksilver script, so you can direct to > Projects, @Contexts, etc.

Following a change in the Omnifocus Applescript library, you may need to amend your Applescript slightly to:

Code:
tell application "OmniFocus" to tell default document
	parse tasks with transport text ("[Message]") without as single task
end tell
(No need to drag [Message] from the Proxi values list as long as it is pasted as above, in square brackets)

You will then be able make use of the full "parse tasks" syntax

[From Omnifocus, see Help/Release Notes/Archive/November 2]

including not only:

- Specifying due dates (in flexible formats)
(precede with #)

but also:

- including several tasks in a single twitter.
(begin additional tasks with --)

and finally, of course:

- appending notes to tasks
(just add additional lines, or split a single line into title // note with a pair of forward slashes)

Last edited by RobTrew; 2010-10-10 at 12:44 AM.. Reason: Delta: Nov 2 --> November 2 (to facilitate search)