Hello,
I have this script in a submit button:
//Create a variable to hold the document object
var oDoc = event.target;
oDoc.mailDoc({
bUI: true,
cTo: heading.system.rawValue,
cCc: "",
cSubject: heading.sevLevel.rawValue" - " + heading.description.rawValue" - " + heading.location.formattedValue,
cMsg: formFields.symptoms.rawValue" - " + formFields.whoExp.rawValue" - " + formFields.whereOccurred.rawValue" - " + formFields.whatEquip.rawValue" - " + formFields.troubleShooting.rawValue,
});
When I verify the script, I get a message expected } line 9. I can't figure out what's wrong.
Thanks,
MDawn