pero no me los pone en cajas individuales, alguien sabes por que?
Código:
  
 for(var i = 0; i < actividades_matutinas.length; i++)
{
	var vert = 120 + (40 * i);
	this.createTextField("texto"+i, this.getNextHighestDepth(), 400, vert, 720, 35);
	this["texto", i].multiline = true;
	this["texto", i].wordWrap = true;
	this["texto", i].border = false;
	
	myformat = new TextFormat();
	myformat.color = 0xffffff;
	myformat.bullet = false;
	myformat.font = "Calibri";
	myformat.size = "16";
	
	this["texto", i].text = this[actividades_matutinas[i].elTexto];
	this["texto", i].setTextFormat(myformat);
}
 

