My script right now is printing the stamp at the center of the document. How can I get the stamp to print diagonally?
//to create watermark/stamp
for(var i=0;i < this.numPages;i++)
{
this.addWatermarkFromText({cText: "FORM\n\nFINALIZED", textAlign:app.constants.align.center,
cFont: "Helvetica-Bold",
nFontSize:48,
aColor: color.red,
nOpacity: 0.5,
bOnScreen:true,
bOnPrint:true});
};
Also, bOnScreen is set to true, but its not really visible. How can I make it so that its viewable on the screen over all the other fields (watermark-like)?