Grazie 1000! Nel frattanto però (ho una consegna in 2 ore!) ho trovato questo...

MovieClip.prototype.typeText = function(tfName, actualltxt) {
//tfname = the name of the textfield inside the movieclip
//actualtxt is the variable you wish to use as the text for the clip
this.q = 0;
this.textTemp = actualltxt;
this.onEnterFrame = function() {
if (this.q<this.textTemp.length) {
this[tfName] = this.textTemp.substring(0, this.q);
this.q++;
} else {
this[tfName] = this.textTemp;
delete (this.onEnterFrame);
}
};
};
//usage - create movieclip instance (tester_mc) with variable inside (titleTxt)
txtVar = "Text text
text text,
text text ";
tester_mc.typeText("titleTxt", txtVar);

Funziona alla grande, mi chiedevo però come modificarlo per comandare la velocità, e se é possibile poi contare un time out dopo il quale il testo cambia con un'altro, al momento ho risolto mettendo tutto su una timeline e mettendo nuovo AS...