buenas tardes, bueno el punto es que no se como hacer para que mis textos creados o traidos de un array no me queden en una sola linea sino que me queden en las lineas necesarias, es decir que no sobrepasen un espacio y ademass que se ajustn a las izquierda, si alguien me puede ayudar lo agradecería mucho.

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);
}