I have 5 dynamic textboxes qu1,qu2…qu5 and when I press the button I somtimes get an “undefined” messages in some texboxes…could you please fix that;?
thanks
on(press){
var dizi=new Array("","we","you","he","she","it","I","they")
for(var i=0;i<6;i++){
var say=Math.floor(Math.random()*dizi.length)+1;
_root["qu"+i].text=dizi[say];
}
}