Skip to main content
stuartw72618486
Participant
November 29, 2018
Answered

Can you combine multiple pdfs and export as seperate files?

  • November 29, 2018
  • 1 reply
  • 906 views

Sounds like a simple question, but hopefully this will help explain my predicament!

At present I have approx. 20 different pdf's containing data; and a generic pdf that I would like to attach at the front of each of these different pdf's, and then save as 20 new combined documents

I know that I can do this manually by drag and dropping between open windows or using the create / combine pdf function in acrobat, however this is a one off and I will eventually be asked to combine over 100 on a regular basis.  Is there a way that this can be worked on in acrobat?

I am up against strong firewalls so cannot download anything from the internet, so was hoping a work around in Acrobat could help.  I look forward to any suggestions?

Thanks

[Moved out of the Community Help Application forum (which is for help with an app Adobe used to make for creating documentation) and into an Acrobat support forum - moderator]

This topic has been closed for replies.
Correct answer try67

Then you can use an Action to insert a specific file into all of them.

This can be done using a script, for example. If the file path to insert is C:\Temp\Cover.pdf and you want to insert it as the first page of each file then execute the following JS code:

this.insertPages(-1, "/C/Temp/Cover.pdf");

Remember to add a command to save the files after the one that executes the script, though.

1 reply

try67
Community Expert
Community Expert
November 29, 2018

What version of Acrobat do you have?

stuartw72618486
Participant
November 29, 2018

Currently using Acrobat X Pro

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
November 29, 2018

Then you can use an Action to insert a specific file into all of them.

This can be done using a script, for example. If the file path to insert is C:\Temp\Cover.pdf and you want to insert it as the first page of each file then execute the following JS code:

this.insertPages(-1, "/C/Temp/Cover.pdf");

Remember to add a command to save the files after the one that executes the script, though.