Skip to main content
Participant
September 7, 2018
Question

Printing multiple copies of one-page document on one sheet

  • September 7, 2018
  • 1 reply
  • 407 views

Hello,

i need to print one-page document 4 timen in 2x2 grid.

It is posible to do if it is not one-page document by choosing option pages and tiping something like 1,1,1,1. But the one-page document has no such option in printing. is there some way to enable it or some workaround? Editing a document is not an option for me becouse there wil be in thousents of documents.

Thanks

    This topic has been closed for replies.

    1 reply

    Bernd Alheit
    Community Expert
    Community Expert
    September 7, 2018

    This is possible with Acrobat JavaScript.

    pp = this.getPrintParams();

    pp.pageHandling = pp.constants.handling.nUp;

    pp.nUpNumPagesH = 2;

    pp.nUpNumPagesV = 2;

    pp.printRange=[[0, 0], [0, 0], [0, 0], [0, 0]];

    this.print(pp);