Show task in new window

You can create a new window, then use GetURL to have that window focus on the task in question:

tell application "OmniFocus"
	tell default document
		set MyTask to task id "35678" -- or whatever you've done to get MyTask
		set MyTaskURL to ("omnifocus:///task/" & (id of MyTask))
		tell (make new document window)
			GetURL MyTaskURL
		end tell
	end tell
end tell

Hope this helps!

2 Likes