Answered
Hi all
I've written a quick script (see below) to automate printing a specific page from one of our forms, however i now need to enable the printing of stamps, but am unsure as to go about it. Currently any stamps applied to this page do not print with the rest of it.
this.print({
bUI: false,
bSilent: true,
bShrinkToFit: false,
nStart: 7,
nEnd: 7
})
this.pageNum = variable
Thanks for any help you can give me
Damian
var pp = this.getPrintParams();
pp.interactive = pp.constants.interactionLevel.silent;
pp.printContent = pp.constants.printContents.docAndComments;
pp.firstPage = 7;
pp.lastPage =7;
pp.pageHandling = pp.constants.handling.none;
this.print(pp);
If any users have version 7 or above there is a security restriction on use the bSilent true or the interaction silent parameter. More information is included in the JavaScript API Reference.
George Kaiser