el codigo que tengo para los textos es el siguiente:
var estilo:TextFormat = new TextFormat();
with(estilo){
font = "Myriad pro";
size = 14;
color = 0x003366;
}
for (var i=0; i<noticias_xml.firstChild.childNodes.length; i++) {
var texto:TextField = this.mc_mc.createTextField("texto", this.mc_mc.getNextHighestDepth(), 0, 0, 0, 0);
with(texto){
autoSize = true;
selectable = true;
text = noticias_xml.firstChild.childNodes[i].firstChild.firstChild.nodeValue; setTextFormat(estilo);
}