Answered
I think I've done this in the past, but I can't find the javascript to make this happen. I have pdf form that the user can email or print, but I need them to "sign" it first. I know that there's a javascript that checks "get_field" or something like that, but I cannot recall the exact string. Can anyone help?
Acrobat Pro 9.x
Thanks,
Bob
if (getField("signature1").value) {
// Go ahead with the submit
} else {
app.alert("Please sign the digital signature field before submitting.");
}
If you're using a submit form action, if you select the Required property of the signature field, the submit process won't be allowed to proceed if the field is not signed.