Copy link to clipboard
Copied
Hi there,
I converted a word document with checkboxes to pdf but the checkbox style it created them in is "Square". Is there any way to change all of these at once to the "Check" style without having to change them all painfully one by one?
Thanks for your help.
Copy link to clipboard
Copied
Run this from javascript console or put it in a button as mouse Up event:
for (var i=0; i<this.numFields; i++){
var cBox = this.getNthFieldName(i);
if(this.getField(cBox).type == "checkbox"){
this.getField(cBox).style = style.ch;}}
Copy link to clipboard
Copied
Run this from javascript console or put it in a button as mouse Up event:
for (var i=0; i<this.numFields; i++){
var cBox = this.getNthFieldName(i);
if(this.getField(cBox).type == "checkbox"){
this.getField(cBox).style = style.ch;}}
Copy link to clipboard
Copied
That worked, thanks for that!
Copy link to clipboard
Copied
Thanks! Still works in 2024.
Copy link to clipboard
Copied
This still works 1/8/2024. Thank you.

