Two ways to convert .pages to word.
Method 1: Thanks Jacko30!
If you rename the pages file to zip and open it, the is a pdf in there. in the quicklook folder.
via convert pages to word – MacTalk Forums.
Method 2:
http://forums.macnn.com/82/applications/381956/group-convert-pages-docs-ms-word/#post3766150
Code:on open theDocuments repeat with aDocument in theDocuments tell application "Pages" open aDocument set thePath to the path of the front document set theWordPath to thePath & ".doc" save the front document as {"doc", "SLDocumentTypeMSWord"} in theWordPath close the front document saving no end tell end repeat end open
One comment