View Single Post
An applescript to do this would be very useful.... I can't work it out.

I have so far:
Code:
tell application "OmniGraffle Professional 5"
	set theDocument to front document
	set canvasCount to count of canvases of theDocument
	repeat with canvasNumber from 1 to canvasCount
		set oCanvas to canvas canvasNumber of theDocument
		set zoom of the window to 100
	end repeat
end tell