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

derrickj2015
derrickj2015
Offline

Badges

Badges
1

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
1

Discussions

Discussions
0

Questions

Questions
1

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by derrickj2015
Customize the badges you want to showcase on your profile
How can I automically deselect a checkbox once the maximum number of checkboxes have been selected? - Adobe LiveCycle 14-01-2015
I found a script below online that works supposedly well. I just need to know how I can get this code to work in livecycle on my pdf form as I am a novice in coding. If someone can attach an example in pdf form that would be great. Thanks! function KeepCount() { var NewCount = 0 if (document.joe.dog.checked) {NewCount = NewCount + 1} if (document.joe.cat.checked) {NewCount = NewCount + 1} if (document.joe.pig.checked) {NewCount = NewCount + 1} if (document.joe.ferret.checked) {NewCount = NewCount + 1} if (document.joe.hampster.checked) {NewCount = NewCount + 1} if (NewCount == 3) { alert('Pick Just Two Please') document.joe; return false; } } I got this code from here: Checkboxes: Only Two

Views

270

Likes

0

Replies

0