Copy link to clipboard
Copied
Hello community. I am trying to print with the code below my PDF form using "Microsoft Print to PDF" and after printing (saving as a flattened image file) it should set the printer to default (any printer) but not works. Can anyone help me?
Thanks in advance
var defaultPrinterName = this.getPrintParams().printerName;
var pp = this.getPrintParams();
pp.printerName = "Microsoft Print to PDF";
pp.NumCopies = 1;
pp.DuplexType = pp.constants.duplexTypes.Simplex;
pp.pageHandling = pp.constants.handling.fit;
pp.printRange = null;
pp.interactive = pp.constants.interactionLevel.silent;
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, printParams: pp });
pp.printerName = defaultPrinterName;
Copy link to clipboard
Copied
[MOVED TO THE ACROBAT READER DISCUSSIONS]
Copy link to clipboard
Copied
No solution?