View Single Post
One needs to specify which member(s) of the rows collection.

e.g.

Code:
tell application "OmniOutliner Professional"
	activate
	tell front document
		set note expanded of selected row 1 to true
	end tell
end tell
or

Code:
tell application "OmniOutliner Professional"
	activate
	tell front document
		set note expanded of every selected row to true
	end tell
end tell

Last edited by RobTrew; 2008-03-24 at 09:33 AM..