Flash MX Help

Hi All

I have created a Flash form with several components including text boxes, tick boxes etc.

I have the following Radio Box and check box.

Are you attending all days:- “Radio Component Group”
Yes
No

If no which days will you be attending:- “Check box group”
Monday
Tuesday
Wednesday

What I want, is if yes is selected from the Radio group and you try and click on one of the days from the checkbox, it will come up with a message box and tell you that you have selected that you will be training all days, please select no if you are training on a particular day. If no is selected it will allow you to select the days you are training.

Hope you can help

Regards

1druid1

try to disable the checkboxes if radio button “yes” selected…
the code will be like this:
[AS]
myCheckBox.enabled = false;
[/AS]