So I converted all Word Documents to PDF with the Mac OS X Automator. How to convert Word Documents to PDF: Open Automator under Mac OS X Add a “Get Specified Finder Items” object. The easiest and fastest way to convert a PDF to a Word file that you can open on your Mac is to use one of the many free, web-based converter tools. This example uses Smallpdf. Smallpdf's PDF to Word converter tool is free to use but the site offers more tools and features with its paid premium plans.

Recently we were asked how to use Automator to convert Apple Pages documents into PDFs. In the spirit of sharing the knowledge, here’s how we did it.

It’d be great to make an app which we could drop our Pages files on and have them made into PDFs. The obvious way to make such an app is with Automator. Unfortunately, Pages doesn’t ship with Automator actions (although there are some funky third party options)

Luckily, Pages is AppleScriptable so we can make our own action. Let’s look at how to do that.

First, launch Automator (you’ll find it in your Mac’s Applications folder). Select “Application”.

Next, drag a “Run AppleScript” workflow into your workflow so you have something that looks like this:

Replace all the purple text in the action with the following AppleScript:

on run {input, parameters}

repeat with theFile in input
tell application 'Finder'
set theFilesFolder to (folder of theFile) as text
end tell

tell application 'Pages'
set theDoc to open theFile

Action

set theDocName to name of theDoc
set theName to (characters 1 thru -7 of theDocName) as text
export theDoc as PDF to file ((theFilesFolder & theName & '.pdf') as text)

Gintama season 1 episode 1 english dub youtube. close theDoc

Batch Convert Word To Pdf Mac Automator

end tell
end repeat
return input
end run

Save the workflow and you should now have an app that you can drop Pages documents on.

Note that it’s up to you to make sure that the documents you drop actually are Pages documents – the script doesn’t check and may error if you drop the wrong type of documents.

Convert Word To Pdf Automator

On a related note, if you’d rather dodge the AppleScripting all together then you could try out our handy Pages Automator Actions.

Convert Word To Pdf Automator

While we have your attention… why not check out our macOS apps?

Barcode Basics – macOS barcode generator (including Automator support)
Ai Actions – Automator action pack for Adobe Illustrator
Pages Automator Actions – Automator action pack for Pages

Automator Action Convert Word To Pdf

We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.