Thread: OO4 applescript
View Single Post
Quote:
Originally Posted by Carlos View Post
- is there a need to somehow "register" OO4 within Automator? Currently, I have some actions in my library related to OmniOutliner, but when I run them, I get "New Outline File failed -- The document cannot be saved in 'OmniOutliner 3' format"
Look in your automator action's script for a line which looks like this:

Code:
		save NewDocument in SaveLocation as "OmniOutliner 3"
The problem is that it's referring to the .oo3 file type using its old identifier "OmniOutliner 3". The solution is to leave off the file type altogether, so that line simply reads:

Code:
		save NewDocument in SaveLocation
Hope this helps!