0
Syntaxerror
New Here
,
/t5/acrobat-sdk-discussions/syntaxerror/td-p/9552964
Dec 12, 2017
Dec 12, 2017
Copy link to clipboard
Copied
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
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-sdk-discussions/syntaxerror/m-p/9552965#M26796
Dec 12, 2017
Dec 12, 2017
Copy link to clipboard
Copied
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...
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

