View Single Post
Haven't used Scripting Bridge, but the problem may be that you need to use a constructor which is a method of the document class.

The applescript analogy would be something like:
Code:
tell application "OmniFocus"
	tell front document
		set oProj to make new project
	end tell
end tell