View Single Post
In the meanwhile, if you are often switching between double screen and single screen, it might be useful to have an applescript something like the one below on your toolbar, to bring your OF window(s) to the top left of your current screen.

Code:
tell application "OmniFocus"
	repeat with oWin in (every window where class is document window)
		set {_, _, intWidth, intHeight} to bounds of oWin
		set bounds of oWin to {0, 0, intWidth, intHeight}
	end repeat
end tell

Last edited by RobTrew; 2008-03-21 at 05:47 AM.. Reason: typo