Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Brianw88
Brianw88
Offline

Badges

Badges
2

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
2

Discussions

Discussions
0

Questions

Questions
2

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Brianw88
Customize the badges you want to showcase on your profile
Re: How to create a conditional checkbox to output text - Adobe LiveCycle 26-05-2011
Hi,I tried creating a hidden text field in Acrobat Pro to feed a set of text based on which checkbox is clicked with the following example code:(function () { // Get a reference to the text field var f = getField("bufferField"); // Set the value of the text field if (event.target.value !== "Off") { f.value = "ABC" } else { f.value = ""; }})();The issue is that I need to use livecycle to add the function I listed above to email it out with the subject feeding from the fields but once I import it ...

Views

362

Likes

0

Replies

0
How to create a conditional checkbox to output text - Adobe LiveCycle 25-05-2011
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...

Views

2.0K

Likes

0

Replies

3