Hello i have some crazy things again ehehehe, i dont know its able or not
because if we have this case u must be able want to do that..

Here is the problem..
I have some Questioner / Exam or whatever that containts 10 numbers, then the
optional is A,B,C, and D that make by radio button
for example
1. What do you think about Flash-DB?..
A. Very nice website
B. Waw thats increadible site as i know

C. No Comment
2. What do you think about Monster?..
A. Scared
B. Funny
C. Big
and the answer of number 1 is B, and 2 is C..
the id name of radio button A in number 1 is radio1a
the id name of radio button B in number 2 is radio1b
Nah we can use the conditional / checking like this right?..
var score:Number = 0;
if (radio1b.selected){
score+=10;
}
if (radio2c.selected){
score+=10
}
but how about 1000 numbers of examp?.. Crazy conditional we made..

the question are
1. Can we make the loop that can initialize many variable for example
we have 100 variable that name var1,var2,var3,var4,...,var100
for(var i:Number = 0; i<100; i++){
if ("var"+i == "blablabla") { <<<<< look at that ("var"+i) do you know what i mean?.. :O
condition
}
}
so that will initialize all off the var1,..,var100 just use that, but how?..
2. Can we trace the value of the RadioButtonGroup?..
Thank you thank you very much..

sry for the strange question, but its really some important right?..
