- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Mark is right, use the Acroforms print() method instead to control the parameters in the print dialog.
The only difference ist, that you do not use the keyword „this“ but „event.target“.
AcroForms:
var pp = this.getPrintParams();
pp.interactive = pp.constants.interactionLevel.automatic;
pp.printerName = "hp officejet d series";
this.print(pp);
XFA forms:
var pp = event.target.getPrintParams();
pp.interactive = pp.constants.interactionLevel.automatic;
pp.printerName = "hp officejet d series";
event.target.print(pp);
Views
Replies
0 Likes
Total Likes