PDA

View Full Version : Exporting to OPML using AppleScript


atobe
04-19-2006, 03:06 PM
Hi,

Can anyone help with this script, or am I going awry in my assumptions somewhere?

I want to export the frontmost document as an OPML file. I am using OmniOutliner 3.5 (v134.2) - do I need Pro? and Mac OS X 10.4.6 .

When I run the script I get NSInternalScriptError and no file :(

If I remove the as "opml" part I get a new folder called test that contains a document content.xml, which appears to be binary!

tell application "OmniOutliner"
set thePath to (choose folder) as string
set opmlPath to thePath & "test.opml"
set posixPath to (POSIX path of opmlPath)
display dialog posixPath
export front document to posixPath as "opml"
end tell

Any ideas?

Many thanks,
Toby

JamesM
04-19-2006, 04:26 PM
Change that last line to

export front document to posixPath as "OOOPMLDocumentType"

atobe
04-19-2006, 04:59 PM
Works a treat!

Is there are reference for this stuff anywhere? Can I find it out from the AppleScript Dictionary?

Thanks again,
Toby

JamesM
04-20-2006, 07:54 AM
There is an SDK available on our Extras page

<http://www.omnigroup.com/applications/omnioutliner/extras/>

I don't recall off-hand if those built-in document types are referenced there. If they aren't please email omnioutliner@omnigroup.com and I'll file a bug.

Tim Wood
04-21-2006, 02:58 PM
Another option is:

save MyDoc in HFSPath

If HFSPath ends in ".opml", the saving code will use the OPML file format. You can override this using 'as' (important if there is more than one exporter for a given file type like HTML).

Sadly, the export command we have doesn't do this (since it was mostly written to support Automator -- which would be another option).

There is an application property "writable document types" that lists all the export type display names, file extensions and document types. The 'documentType' key in each record is what you'd pass for the 'as' argument in James' example.

zurisee
05-30-2008, 03:11 AM
This looks useful, but I'd need a simple but executable example for

save MyDoc in HFSPath

(I'm new here and not familiar with "HFSPath" and the like)

Thanks,
Dieter