View Single Post
If you are running OF 1.8 (currently sneeky peak builds) and don't mind temporarily hiding your folder structure, you could experiment with an applescript along the lines of:

Code:
tell application id "com.omnigroup.omnifocus"
	tell front document
		set lstNotStalled to ¬
			flattened projects where ¬
			(status is active) and (number of available tasks > 0) ¬
			and ((effectively hidden of its folder is false) or (its folder is missing value))
		set focus of front document window to lstNotStalled
	end tell
end tell
--

Last edited by RobTrew; 2010-08-30 at 12:41 PM..