Warning pop up message when not filling form on acrobat
Hi! I'm trying to create a pop up warning when an user opens a PDF form with a different app other than Acrobat Reader or Acrobat DC.
So far I've dug up a lot in the Acrobat forums, but I haven't really found anything related.
I wrote the following JS code, but it won't run:
if (app.viewerVersion < 9) {
app.alert("You must have Acrobat Reader 9.0 or higher to use this form.")
this.closeDoc(true)
}
If anyone has done something similar, please let me know how you did it or at least help me get in the right direction 🙂
