он хотел сказать что текстфилд у тебя не создается, сравни

Код:
class test extends MovieClip{
function test(){
var i:Number;
for (i=1; i< 5; i++){
insertTextField(i);
}
}
function insertTextField(x:Number){
this.createTextField("tx" + x, x,20,x*30,0,0 );
this['tx' + x].autoSize=true
this['tx' + x].text = "test";
}
}