Copy link to clipboard
Copied
I'm just trying to create a mailDoc on Mouse Up for a submit button and I'm encountering a syntax error:
var sendForm = app.alert("Are you ready to submit to " + ProgramManager + "?",2,2,"Program Manager Submission");
if(sendForm) == 4) {
this.mailDoc({bUI:true,cTo:ProgramManagerEmail,cSubject:"Incident Report Submitted",cMsg:"A new Incident Report has been submitted.\n Please sign it and return it to the sender."});
}
else
app.alert("Please continue with the form");
I'm getting syntax error 3: at line 4. I'm hitting a wall, so I'm open to suggestions. ProgramManagerEmail is a variable that is set from a drop-down to select a user. That populates an email address in ProgramManagerEmail.
Thank you,
~ David
1 Correct answer
The parentheses on the "if" are not correct.
Should be this:
if(sendForm == 4) {
Copy link to clipboard
Copied
The parentheses on the "if" are not correct.
Should be this:
if(sendForm == 4) {
Use the Acrobat JavaScript Reference early and often
Copy link to clipboard
Copied
Thanks so much!!!
Copy link to clipboard
Copied
Many syntax errors (related to delimiters) are reported on the lines following the source of the error, because it's not apparent there is an error until a non-matching token is encountered.
Use the Acrobat JavaScript Reference early and often
Copy link to clipboard
Copied
Hi Thom, I am having a similar issue
Here is the error code
syntax error 3: at line 4
Copy of script:
var dropdownValue = this.getField("Dropdown1").value;
case "10012253":
this.getField("Text2").value = "$50.00"
this.getField("Text3").value = "$67.00"
break;
Copy link to clipboard
Copied
You miss the switch.

