Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
10

Add two blank pages first and two blank pages last in document

New Here ,
Jan 03, 2024 Jan 03, 2024

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.

TOPICS
Edit and convert PDFs , PDF
295
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 03, 2024 Jan 03, 2024

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?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 03, 2024 Jan 03, 2024

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.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 03, 2024 Jan 03, 2024
LATEST

OK, then you can do it using this code:

 

this.newPage(0);
this.newPage(0);
this.newPage();
this.newPage();
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines