Hello,
Here is my Problem. I want to create 20 checkboxes in acrobat with the following condition: if 5 of 20 chechboxes are checked, it shouldn't be possible to check another one.
I have no idea which command I have to use for the checkboxes. My Code so far:
var f = this.getField("control");
var g = this.getField("control2");
if (f == checked) // i don't know the right command
g.checkThisBox(0,false);
Maybe someone can help me.
Thanks Nandiny
So to test the value of the 'control' field, one needs to access the value of the field or other property.
George Kaiser