View Single Post
Quote:
Originally Posted by jeyell View Post
I too would like some method of controlling en-masse the toggling (sticky or otherwise) the expand/collapse of Notes.
You could attach a keystroke to a script which toggles the expansion of all notes in the content window.

Something like:

Code:
tell application id "com.omnigroup.OmniFocus"
	tell content of front window
		set refTrees to a reference to descendant trees
		set lstExpanded to note expanded of refTrees
		set blnToggle to not (first item of lstExpanded)
		set note expanded of refTrees to blnToggle
	end tell
end tell

Last edited by RobTrew; 2010-05-06 at 03:48 AM..