Delete Page on Signature
I want to delete the first page of the document, once the document is signed.
I have tried using a script in the "This script executes when field is signed":
this.deletePages();
I have also tried creating a script for "On Blur" in the signature field:
var f = this.getField("Requestor Signature");
var status = f.signatureValidate();
if (status > 2) {
this.deletePages();
}
Neither has worked.
