Crea un file di testo, chiamato "testo.txt". Dentro il file di testo scrivi:

txt=balbalbalbalbalblabalbla eccetera

In flash, crea un movieclip, con dentro un campo di testo dinamico multiriga con wordwrap, al quale associ variabile "txt".
Al movieclip associ:

codice:
onClipEvent(load){ 
	this.loadVariables("testo.txt"); 
} 
onClipEvent(data){ 
	parti = true 
	oldtt = getTimer(); 
} 
onClipEvent (enterFrame) { 
	if (parti) { 
		tt = getTimer(); 
		if (tt-oldtt>1000) { 
			oldtt = tt; 
			if (txt.scroll == txt.maxscroll) { 
				txt.scroll=1; 
			} else {
				txt.scroll++; 
			} 
		} 
	} 
}