Copy link to clipboard
Copied
My checkbox name is "Check Box1" is it possible to toggle its state with a button click?
Copy link to clipboard
Copied
Yes, it's possible using script, place this script in button under "Action" as 'Mouse UP':
var f = this.getField("Check Box1");
f.checkThisBox(0, !f.isBoxChecked(0));
Copy link to clipboard
Copied
Yes, it's possible using script, place this script in button under "Action" as 'Mouse UP':
var f = this.getField("Check Box1");
f.checkThisBox(0, !f.isBoxChecked(0));
Copy link to clipboard
Copied
Slick.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now