Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

About this user

Richard

Print a PDF file using the Acrobat Pro Javascript Console in OS X

// Print a PDF file using the Acrobat Javascript Console
// Press Command J to bring up the console in Acrobat
// After typing your code in the console, select it and press Control Enter to execute
// Uses current Page Setup when printing

var myDoc;

myDoc = app.openDoc("/Users/yourusername/Desktop/outputfolder/filename.pdf");
myDoc.print({bUI : false});
myDoc.closeDoc();