codice:
onClipEvent (load) {
	n = 1;
	loadVariables("prova.txt", this);
	this.newtesto = "";
}
onClipEvent (enterFrame) {
	if (this.caricato) {
		if (testo.length>=n) {
			this.newtesto = this.newtesto+substring(testo, n, 1);
			n++;
		} else {
			this.caricato = false;
		}
	}
}
onClipEvent (data) {
	this.caricato = true;
}
nel text come hai detto tu scrivi testo=blablaba...

il codice va associato al mc che contiene il campo di testo con nome newtesto