I have a canvas consisting of 5 different radio button groups: Lec,
Dis, Ind, Sem, and Act. In my Script I have the following:

var rb:RadioButton;
rb.label = "(L) "+l.dataProvider.source[m];
rb.name = l.dataProvider.source[m];
rb.groupName = "Lec";
rb.x = x;
rb.y = y;
y+=15;
sectRadioCanvas.addChild(rb);

This is done a variable number of times, depending on the list "l".
The radio buttons act as if they are in a group (only one of them is
selectable at a time) but when I check the group's "numRadioButtons"
field, it is always set to 0. What I wanted to do was later check the
names of each radio button in the group and if it matches a given
name, then change the radio button to be selected. This seems to be
the best and only way to make a radio button be selected given only
its name and group. Any ideas on how to circumvent this problem?

Reply via email to