Radio buttons/forms

:cross-eye
I’m following the tutotial
http://www.kirupa.com/developer/mx/components2.htm

I’m trying to create a form with multiple choice questions and then the results are posted (at the end in a text box) after the user hits submit. However, I CANNOT get the different results for the different radio buttons to show up in the end text box results.

Here’s the code I have for question 1:
“stop() ;
function radioDisplay (component) {
radio = component.getValue() ;
}
q_one.setChangeHandler (“radioDisplay”);”

Here’s the code I have for question 2:
“stop() ;
function radioDisplay (component) {
radio = component.getValue() ;
}
q_two.setChangeHandler (“radioDisplay”);”

I understand that the group names have to be different. Here’s the code I have attached to the dynamic text box that’s supposed to display the different answers:

"stop();
result.backgroundColor = 0xFFFFFF;
result.text = "You answered: " +radio+ "
“;”

I’ve tried everything to get the answers for all the questions to display in the one dynamic text box but CANNOT figure it out. Basically, how can I get the different answers for all the multiple choice questions to show up at the end in the dynamic text box? Any help would be GREATLY appreciated!

I’ve also attached my .FLA!

Thanks,
Brian