Hi,Sorry, I am new to PDF Development. I tried creating PDF using
Acrobat XI Pro. During creation, I have encountered issues in running
custom JavaScript. The requirement is to validate all the required
fields before saving the PDF. I tried using the following scripts to
validate the said required fields. But, it's not working.Option 1: If
the field is null, a message box will appear.
if(this.getfield("textbox") = null){app.alert("required");}else
{app.execMenuItem("SaveAs");}Option 2: If the fi...