Copy link to clipboard
Copied
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!
Yes, it can be done using this code:
var pp = this.getPrintParams();
pp.DuplexType = pp.constants.duplexTypes.Simplex;
this.print(pp);
Copy link to clipboard
Copied
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!
Yes, it can be done using this code:
var pp = this.getPrintParams();
pp.DuplexType = pp.constants.duplexTypes.Simplex;
this.print(pp);
Copy link to clipboard
Copied
Yes, it can be done using this code:
var pp = this.getPrintParams();
pp.DuplexType = pp.constants.duplexTypes.Simplex;
this.print(pp);