Category Archives: Programming

Acrobat JavaScripts – Where do they go?

JavaScripts in Acrobat can either be attached to a document – for example to validate a form field – or they can be loaded directly into the application as a folder level script. It’s pretty straight forward to figure out … Continue reading

Posted in Acrobat, JavaScript, mac, PDF, Programming | Tagged , , , , | 7 Comments

Reading And Modifying PDF Form Fields with VBA

I’ve written about VBA and Acrobat JavaScript before, and I’ve also mentioned that you can combine VBA and JavaScript to access PDF form fields, but I still owe a sample for that. I had to answer another question today about … Continue reading

Posted in Acrobat, JavaScript, PDF, Programming | Tagged , , , , | 74 Comments

Best Way to Learn Acrobat Scripting

Every now and then I come across the question “What is the best way to learn scripting for Adobe Acrobat? Are there any books or other resources averrable?”. After doing some research, I think I finally found the best resource … Continue reading

Posted in Acrobat, JavaScript, PDF, Programming | Tagged , , , , , | 1 Comment

Is Your Acrobat Plug-in Still Using ADM?

For a few years now Adobe has been telling 3rd party developers that the ADM (Adobe Dialog Manager) will be discontinued, and that existing plug-ins may have to be ported to something else. If I remember correctly, this started with … Continue reading

Posted in Acrobat, mac, PDF, Programming | Tagged , , , , , , | 2 Comments

Developing Acrobat JavaScript on a MacBook

Acrobat’s JavaScript is a great tool to extend the application, or to automate reoccurring tasks. There are several ways a JavaScript can be added to the application or a document (e.g. folder level scripts, validation scripts, event handling scripts, …), … Continue reading

Posted in Acrobat, Apple, JavaScript, mac, PDF, Programming | Tagged , , , , , | 9 Comments

Acrobat Plug-Ins

If you’ve seen my resume – or talked to me lately, you know that I create Acrobat plug-ins for a living. When people hear that, they usually think something like “Don’t forget to pick up the dry cleaning” or “I … Continue reading

Posted in Acrobat, PDF, Photos, Programming | Tagged , , , , | 7 Comments

Splitting PDF Pages

No, this is not about my patent pending idea of a sheet splitter that turns duplex documents into simplex documents… This post is about a problem that comes up every now and then: When you scan a book or a … Continue reading

Posted in Acrobat, PDF, Programming | Tagged , , , | 65 Comments

Acrobat, JavaScript and VB walk into a bar…

OK, let’s just forget about that old joke and concentrate on how to combine all three into something that is quite useful. As I’ve described in one of my previous posting, it is quite easy to automate Acrobat from VB … Continue reading

Posted in Acrobat, JavaScript, PDF, Programming | Tagged , , , , , , | 16 Comments

Counting Bookmarks

Let’s assume you have a PDF document, and you want to know how many bookmarks you have in that document, how would you approach that? The JavaScript API has methods to traverse the bookmark tree. Here is a short program … Continue reading

Posted in Acrobat, JavaScript, PDF, Programming | Tagged , , , | 5 Comments