Mobile app version of vmapp.org
Login or Join
Sarah814

: Insert blank page into a large PDF file I've got a very big PDF file with over 10,000 pages. I need to insert a blank page after every 3rd page in this file. Is there a way to do this

@Sarah814

Posted in: #AdobeAcrobat #Pdf

I've got a very big PDF file with over 10,000 pages.
I need to insert a blank page after every 3rd page in this file.

Is there a way to do this in Acrobat DC? Or PostScript it in a special way?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Sarah814

2 Comments

Sorted by latest first Latest Oldest Best

 

@Angie364

You can create an Action in DC with the Action wizard.

The Action can use JavaScript to add a blank page after every 3 pages.




In the Tools pane, select Action Wizard.
Under Action wizard, click Create New Action. The action will run on the currently open document by default.
In the Create New Action dialog, on the left side under "Choose tools to add", click "More Tools".
Under More Tools, select "Execute JavaScript" and click the "Add" button in the center.
On the right side, under Execute JavaScript, click Specify Settings to open the script window.
Delete the contents of the script window.
Add the following script:




var start = 4;
var jump = 3;

for (var i=start; i<this.numPages; i=i+jump) {
this.newPage(i);
i++;
}





Click OK to close the script window.
Uncheck the "prompt user" checkbox.
Click "Save" to save your Action.


11.Add a name like "Add blank pages" and click save.



To run the Action:


Open the document in which you want to add blank pages.
Under Tools, select Action Wizard to show the list of defined Actions.
Locate your new "Add blank pages" Action and click on it.
Click Start to run the Action.


The Action will run quickly and silently and show "Completed" when it is done.

The above script does not Save the file after the pages are added.

Open the Pages panel on the left to ensure your blank pages are in the right place.

10% popularity Vote Up Vote Down


 

@Nimeshi706

I do not have Acrobat DC... merely because I much prefer Acrobat X. And Adobe won't allow DC and X to exist on the same drive. So.. this answer is written based upon Acrobat X... it should translate to Acrobat DC, but menu locations/options may be titled differently.

Open the PDF...

View > Tools > Pages...

More Insert Options >

Insert Blank Page



You would need to do this for each page you want to insert. So offhand it's not ideal, I realize. Maybe you can comma separate multiple pages in DC? (you can't in X). I'd imagine this could be scripted via javascript, but that's kind of out of my wheelhouse.

There is a keyboard shortcut in Acrobat X, so that would possibly speed up the process a bit Shift+Command/Ctrl+Q -- seems a really odd place to use the Q key in a command, but that's what's there. On the Mac, the shortcut implements the OS Log Out feature so it's pointless to use, but it could be edited to something other than the Q.

If you have multiple large PDFs, you can use the Action Wizard to configure an action. In Acrobat X, you'd still have to add a step for each blank insertion in the action. I don't know if Actions have improved in DC.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme