Skip to main content
Inspiring
August 14, 2019
Question

viele Dateien drucken

  • August 14, 2019
  • 1 reply
  • 1184 views

Guten Tag liebe Users

Gerne möchte ich mehrere Dateien mit einem Javascript an den Drucker senden. Vorher aber den Druckmanager anzeigen lassen, damit ich die Papierauswahl anwählen kann.

Für eine Hilfe danke ich im Voraus.

Freundliche Grüsse

This topic has been closed for replies.

1 reply

try67
Community Expert
Community Expert
August 14, 2019

You'll have to select those setting for each file separately, or specify them in your code (which I'm not sure will be possible, depending on what exactly you want to specify). Another option is to combine all the files first to a single PDF, and then you'll only have to make your selection once when you print it.

bisyvoAuthor
Inspiring
August 14, 2019

Thank you for your response. They are all the same settings for printing. It takes quite a long time for all the leaves to be joined together. Is there no possibility?

bisyvoAuthor
Inspiring
August 14, 2019

Do you know how to use the Action Wizard in Acrobat Pro?
If so, try creating an Action that executes this JavaScript code and run it on your files:

var pp = this.getPrintParams();

pp.interactive = pp.constants.interactionLevel.automatic;

this.print(pp);

This will print them using the default settings to your default printer.


Thank you very much, will try it tomorrow.