vorrei creare una serie di testi dinamici da codice ed impostarvi la caratteristica html.Il seguente codice cra il textfield ma non visualizza il text impostato è un problema di livelli?:
for(var i=0;i<this.mTesti.length;i++)
{
var testo1=this.Padre.createTextField("testo"+String(i ),1,x,50,100,100);
testo1.eval("testo"+String(i)).text="gg";
testo1.multiline = true;
testo1.wordWrap = true;
testo1.border = false;
myformat = new TextFormat();
myformat.font="Verdana"
myformat.size=10;
testo1.setTextFormat(myformat);
x+=100;
}
}