Skip to main content
August 5, 2016
Answered

Flattening multiple files at once?

  • August 5, 2016
  • 1 reply
  • 5168 views

Dear Adobe experts,

Is it possible to flatten at once multiple files (making comments on each distinct file flattened)? Or is it possible to create a shortcut for the flattening of one pdf file at once?

I know of the Ctrl + Shift + X to open up the Preflight and then from there I can flatten the file currently in use.

I have an efficiency problem since I have thousands of files. I have looked everywhere and know most Windows/Adobe shortcuts.

Any help would be appreciated,

Good day

PS: I am using Adobe Acrobat Pro XI

This topic has been closed for replies.
Correct answer try67

You can do it using an Action (via Tools - Action Wizard).

Create a new Action that executes this JS code and then saves the file, and then just run it on your files:

this.flattenPages();

Just a side-note: Processing thousands of files like this might not work in a single process. You'll probably have to do it in batches.

In my experience, anything more than 500 files at a time is a recipe for problems.

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
August 5, 2016

You can do it using an Action (via Tools - Action Wizard).

Create a new Action that executes this JS code and then saves the file, and then just run it on your files:

this.flattenPages();

Just a side-note: Processing thousands of files like this might not work in a single process. You'll probably have to do it in batches.

In my experience, anything more than 500 files at a time is a recipe for problems.

August 5, 2016

Thank you very much, everything worked perfectly.