Insert Blank page that has watermark of "This page is intentionally left blank" on odd page documents.
I am using Action Wizard to insert blank pages on odd page documents. In the past i used a script that found a file path to a document that says "this page is intentionally left blank", but i would like to build a script that adds a watermark to the new blank page that says the same thing. Below are the two scripts i found but i am unsure how to make them work together. I am new to javascript and im not sure if this is even possible or if im doing everything the hard way. Thanks for the help
Script 1:
if (this.numPages % 2) {
this.newPage();
}
Script 2:
this.addWatermarkFromText({
cText: "This\n\nPage\n\n\n\nIs\n\nIntentionally\n\nLeft\n\nBlank",
nTextAlign:app.constants.align.center,
cFont: "Helvetica-Bold",
nFontSize:36,
aColor: color.red,
nStart: this.pageNum,
nOpacity: 0.5
});
