Skip to main content
Participant
November 8, 2019
Question

Javascript

  • November 8, 2019
  • 2 replies
  • 283 views

Hello,

 

i refer to the following link: JavaScript™ for Acrobat® API Reference. How do you correctly address text fields and selection fields in Javacript? Is there a short form in Javascript regarding mandatory fields?

 

Example code that does not work:

 

var empty = "";

if(this.getField("Example") == empty)
{
app.alert("Error");
}
 

 

This is just a test.

 

How should the Javascript code begin in Adobe?

 

Best regards

 

Christian Huml

This topic has been closed for replies.

2 replies

Bernd Alheit
Community Expert
Community Expert
November 8, 2019

Try this:

var empty = "";
if(this.getField("Example").value == empty)
{
app.alert("Error");
}
Legend
November 8, 2019

I don't see an immediate problem with your code. Of course, writing the code is only half the story; you also have to decide which event to attach it to.  What happens when you try to use it. and what does it say in the console?