Hola Alsuara, te copio el texto de la ayuda de Flash, seguramente te funcionará.
Código:
this.createTextField("mytext",1,100,100,100,100);
mytext.multiline = true;
mytext.wordWrap = true;
mytext.border = true;
var myformat:TextFormat = new TextFormat();
myformat.size = 20;
mytext.text = "This is my first text field object text";
mytext.setTextFormat(myformat);
Fijate que en ese caso el cuadro de texto es creado, pero si vos ya lo tenes, sería algo asi como:
Código:
var myformat:TextFormat = new TextFormat();
myformat.size = 20;
_root.UnCuadroDeTextoTuyo.text = "This is my first text field object text";
_root.UnCuadroDeTextoTuyo.setTextFormat(myformat);
¿Se entiende? No hay que hacer referencia a ninguna variable, sino directamente al cuadro de texto.
Espero te sirva,
Saludos, Lucas