View Single Post
I think in theory you should be able to use something like this:

Code:
tell application id "OGfl"
	tell self
		set blnCollapsed to ((collapsed) as boolean)
		set collapsed to not blnCollapsed
	end tell
end tell
or even just

Code:
tell self
	set collapsed to not collapsed
end tell
but I notice that an error message is generated in Presentation mode, though it seems to work from the Run Script button of the Action inspector.

A case for Help > Send Feedback ?