Skip to main content
Participant
February 1, 2018
Answered

Skript to print a pdf file simplex

  • February 1, 2018
  • 1 reply
  • 582 views

My question is, is there a script for one-sided printing of a PDF file? I have a pdf package with different single forms and need them simplex printed even if the printer driver is set to double-sided printing? Any ideas?

Thank you for your Help!

This topic has been closed for replies.
Correct answer try67

Yes, it can be done using this code:

var pp = this.getPrintParams();

pp.DuplexType = pp.constants.duplexTypes.Simplex;

this.print(pp);

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
February 1, 2018

Yes, it can be done using this code:

var pp = this.getPrintParams();

pp.DuplexType = pp.constants.duplexTypes.Simplex;

this.print(pp);