Creating file with 2 pages. Second page got Button >Print< with script action:
var pp = this.getPrintParams();
pp.firstPage = 1; // start at page 2
pp.lastPage = 1; // end at page 2
pp.NumCopies = 2; // 2 copies
this.print(pp); // print page 2
Some possibility add watermark "COPY" during printing only, and only to second copie with all ajustments property for watermark.
>> cText: "COPY",
bOnTop: true,
bOnScreen: true,
nTextAlign: app.constants.align.left,
nHorizAlign: app.constants.align.center,
nVertAlign: app.constants.align.center,
nHorizValue: 0,
nScale: 3,
nOpacity: 0.1,
nRotation: 45
}); <<
Thanks in advance.
Igor.