Hello,I have an interesting situation, I have an interactive spreadsheet
that has a clickbutton that will open outlook to email the form. It also
creates a subject line to email based on fields in the pdf, I used the
following code for that://Create a variable to hold the
document objectvar oDoc = event.target;oDoc.mailDoc({bUI: true,cTo:
"a@b.com",cSubject: Employee_Name.rawValue + ", " +
Service_Area.rawValue + " ," + Employee_Number.rawValue + " ," +
Dropdown1.rawValue}); What I'd like to do to extend that is
make it so if one of three checkboxes are clicked then it adds it to the
email subject line eg. [ ] A[ ] B[ ] C If A = checked then D = "A"elseif
B = checked then D = "B"elseif C = checked then D = "C"- cSubject:
Employe...