Copy link to clipboard
Copied
There must be a better way of doing this, but it's got me- all help appreciated I'm sure.
Back to back printing with a different field on the bottom of the pages
var pp = this.getPrintParams();
pp.DuplexType = pp.constants.duplexTypes.DuplexFlipShortEdge;
this.print(pp);
//Print Ds COPY
getField("Footer").value = "[ Ds copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 0, nEnd: 0, });
getField("Footer").value = "[ Ds copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 2, nEnd: 2, });
getField("Footer").value = "[ Ds copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 1, nEnd: 1, });
getField("Footer").value = "[ Ds copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 3, nEnd: 3, });
var pp = this.getPrintParams();
pp.DuplexType = pp.constants.duplexTypes.DuplexFlipShortEdge;
this.print(pp);
//Print POL COPY
getField("Footer").value = "[ Judgement Creditor's Solicitor copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 0, nEnd: 0, });
getField("Footer").value = "[ Judgement Creditor's Solicitor copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 2, nEnd: 2, });
getField("Footer").value = "[ Judgement Creditor's Solicitor copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 1, nEnd: 1, });
getField("Footer").value = "[ Judgement Creditor's Solicitor copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 3, nEnd: 3, });
var pp = this.getPrintParams();
pp.DuplexType = pp.constants.duplexTypes.DuplexFlipShortEdge;
this.print(pp);
//Print SS & AUDIT
getField("Footer").value = "[ SS copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 0, nEnd: 0, });
getField("Footer").value = "[ SS copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 1, nEnd: 1, });
getField("Footer").value = "[ AUDIT copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 0, nEnd: 0, });
getField("Footer").value = "[ AUDIT copy ]";
this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 1, nEnd: 1, });
When you use
this.print(pp);
it prints the whole document.
Copy link to clipboard
Copied
Want you print the whole document or seperate pages?
Copy link to clipboard
Copied
The whole document would be good
Copy link to clipboard
Copied
Simply remove the nStart and nEnd parameters from your code, then...
Copy link to clipboard
Copied
When you use
this.print(pp);
it prints the whole document.