0
Explorer
,
/t5/acrobat-discussions/toggle-checkbox-with-a-button/td-p/15357624
Jun 05, 2025
Jun 05, 2025
Copy link to clipboard
Copied
My checkbox name is "Check Box1" is it possible to toggle its state with a button click?
TOPICS
JavaScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 ACCEPTED SOLUTION
Community Expert
,
/t5/acrobat-discussions/toggle-checkbox-with-a-button/m-p/15357627#M510485
Jun 05, 2025
Jun 05, 2025
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));
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/acrobat-discussions/toggle-checkbox-with-a-button/m-p/15357627#M510485
Jun 05, 2025
Jun 05, 2025
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));
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-discussions/toggle-checkbox-with-a-button/m-p/15357671#M510488
Jun 05, 2025
Jun 05, 2025
Copy link to clipboard
Copied
Slick.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

