Copy link to clipboard
Copied
Is there a way to automatically add two blank pages first and two blank pages last to a document.
Have every week 40-100 documents where these pages are to be added.
Copy link to clipboard
Copied
Yes, you can do it using a script. If you put that script in an Action you can run it on multiple files.
What size should those pages be, though?
Copy link to clipboard
Copied
A4 or letter, doesn’t really matter. I am going to print the documents as a brochure and the file contains different sizes that I adjust when printing.
Copy link to clipboard
Copied
OK, then you can do it using this code:
this.newPage(0);
this.newPage(0);
this.newPage();
this.newPage();