Answered
Checkbox style
Is there a way to change checkbox style with a script?
Is there a way to change checkbox style with a script?
Yes, use something like this (it will cycle through check, cross, circle):
var f = this.getField("Check Box1");
var styles = [style.ch, style.cr, style.ci];
var currentIndex = styles.indexOf(f.style);
var nextIndex = (currentIndex + 1) % styles.length;
f.style = styles[nextIndex];
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.