View Single Post
If you paste the following Applescript into Script Editor, and save it with a memorable name to the folder:

[username]/Library/Scripts/Applications/Omnifocus

you will find that the Omnioutliner menu's View/Customize_Toolbar will enable you to drag its icon to the toolbar.

Should do the trick.

Code:
tell application "OmniOutliner Professional"
	if (count of documents) > 0 then
		tell front document
			set expanded of every row to true
			set note expanded of every row to true
		end tell
	end if
end tell

Last edited by RobTrew; 2008-02-19 at 09:22 AM..