View Single Post
In the OG Applescript dictionary, the zoom state is a property of windows rather than canvases.

You could reset the zoom level of all open windows:

Code:
tell application "OmniGraffle Professional 5"
	repeat with oWin in windows
		tell oWin
			if zoomable then set zoom to 2
		end tell
	end repeat
end tell

Last edited by RobTrew; 2008-10-27 at 04:43 AM..