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

Syntaxerror

New Here ,
Dec 12, 2017 Dec 12, 2017

This is probably way simple but....

I have this script:

var a = this.getField(2 PCT);

var b = this.getField(SUB TOTAL);

event.value = a.value * (b.value / 100)

And get: SyntaxError: missing ) after argument list 1: at line 2

Can someone explain this to me?

Thanks

TOPICS
Acrobat SDK and JavaScript , Windows
315
Translate
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 ,
Dec 12, 2017 Dec 12, 2017
LATEST

You need to put quotes around the field names.

var a = this.getField("2 PCT");

var b = this.getField("SUB TOTAL");

event.value = a.value * (b.value / 100)

You might want to run through some of the content here...

JavaScript Tutorial​

Translate
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