View Single Post
When I'm in wifi areas, I use my Toodledo sync tool OFTD
http://groups.google.com/group/oftd

But that can be sorta slow on Edge, so I use the iPhone notes program to jot stuff down, and then email it to myself.

I title the note

:To Do List

and My sig also starts with a ":"

I then copied the mail action script and added my own custom function before it gets passed to OmniFocus that ignores lines that start with : and also allows two spaces on a line to be considered a new task.

Code:
--after this line:
--set theText to theSubject & return & content of theMessage
--add:
--customProcessText(theText)

on customProcessText(theText)
	set newText to ""
	set theLines to every paragraph of theText
	repeat with aLine in theLines
		if aLine begins with "  " then
			set newText to newText & "--" & (characters 3 thru -1 of aLine as string) & return
		else
			if aLine does not start with ":" then
				set newText to newText & (aLine as string) & return
			end if
		end if
	end repeat
	return newText
end customProcessText