codice:
_root.createTextField("scritta", 2, 20, 20, 400, 500);
scritta.wordWrap = true;
scritta.multiline = true;
// Formatto la variabile
scrittaformat = new TextFormat();
scrittaformat.color = "0x123466";
scrittaformat.align = "left";
scrittaformat.font = "Arial";
scrittaformat.size = 20;
scritta.setNewTextFormat(scrittaformat);
// Aggiungoil testo
scritta.text = "a tutti";
lettere = "ciao ";
contatore = lettere.length;
this.onEnterFrame = function()
{
	if (contatore > -1) {
		scritta.text = lettere.substr(contatore, 1) + scritta.text;
		contatore--;
	} else {
		delete this.onEnterFrame;
	}
};