View Single Post
Quote:
Originally Posted by sterling View Post
There does not seem to be the ability to Applescript the export function, otherwise I really like this idea.
Try using the "as" parameter to the "save" command to specify a different file type, like this:

Code:
tell application "OmniFocus" to tell default document
	save in "/tmp/OmniFocus-Export.html" as "HTML"
end tell
Hope this helps!