View Single Post
The Applescript library enhancements recently made by Tim Woods in the Sneaky Peek 1.8 builds now hugely simplify this kind of task.

To see a list of projects which lack available actions, for example, you could now write:

Code:
tell application "OmniFocus"
	tell default document
		set focus of front document window to ¬
			(flattened projects where number of available tasks is 0) as list
	end tell
end tell
(Note that these applescript enhancements will be a feature of ver 1.8, and this script will not work in ver 1.7)

--

Last edited by RobTrew; 2010-06-23 at 05:47 AM..