• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Javascript

New Here ,
Nov 08, 2019 Nov 08, 2019

Copy link to clipboard

Copied

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

TOPICS
Acrobat SDK and JavaScript , Windows

Views

183

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 08, 2019 Nov 08, 2019

Copy link to clipboard

Copied

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?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 08, 2019 Nov 08, 2019

Copy link to clipboard

Copied

LATEST

Try this:

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines