codice:
for (var i = 0; i < this.mTesti.length; i++)
{
	this.Padre.createTextField("testo" + i, i, x, 50, 100, 100);
	var testo1 = this.Padre["testo" + i];
	testo1.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;
}