Using PrintParams to print to Nuance PDF
Using Javascript for an Acroform, am I able to code a form to Print to PDF if someone is using Nuance software for PDF conversion?
This works with my "Adobe PDF" printer, but it doesn't do anything if I use "Nuance PDF" - which is the name of the printer.
var pp = this.getPrintParams();
pp.interactive = pp.constants.interactionLevel.automatic;
pp.printerName = "Nuance PDF";
this.print(pp);
this.closeDoc(true);
Thanks!
