View Single Post
Quote:
Originally Posted by Mitch Wagner View Post
I'd really like a view that allows me to view all my active tasks in one long list, and allows me to order them without respect to context or project
To paste such a list into a text file, you could start with something like:

Code:
property pstrDBPath : "$HOME/Library/Caches/com.omnigroup.OmniFocus/OmniFocusDatabase2"

set the clipboard to (do shell script "sqlite3 " & pstrDBPath & space & quoted form of "
	SELECT name FROM task ORDER BY dateDue, name;
")
and then fine-tune the query to get the listing you want.

(Copies of OmniFocus purchased through the AppStore won't be able to run this snippet without modification).