For in statement

for(var i in Q7_Clip){
    if(typeof(Q7_Clip*) == "object"){
        Q7_Clip*.onChanged = function(){
        _root.myVars["Q7_"+Q7_Clip*._name] = Q7_Clip*.text;
    }
}

I was hoping to be able to assign the above onChanged function to each instance of an inputText field within a movieclip. The result is that the final textfield works with the onChanged event but none of the others do.

What am I doing wrong?

Thanks.

_t