View Single Post
I am attempting to write a script that would:

1. Open OF
2. Print the "Today" perspective formatted to 4 pages per sheet
3. Close OF

Here's the script:

Code:
property PrintPerspective : "Today"

tell application "OmniFocus"
	activate
	print perspective PrintPerspective with properties {pages across:2, pages down:2} ¬
		without print dialog
	quit with saving
end tell
For some reason, it always prints one page per sheet instead of 4 and I can't figure out why and how to change it (I'm brand new to AppleScript).

Any suggestions how to accomplish the above?