io ho fatto così

codice:
testo1=new LoadVars(); 
testo1.load("Eva.txt"); 
testo1.onLoad = function (success){ 
testo = testo1 
} 

su_btn.onPress = function(){
	_root.onEnterFrame = function(){
		testo.scroll--;
	}
};
su_btn.onRelease = function(){
	_root.onEnterFrame = undefined;
}
giu_btn.onPress = function(){
	_root.onEnterFrame = function(){
		testo.scroll++;
	}
};
giu_btn.onRelease = function(){
	_root.onEnterFrame = undefined;
}

t = new Object()
t.onKeyDown = function(){
	if(Key.isDown(Key.UP)){
		testo.scroll--
	}else if(Key.isDown(Key.DOWN)){
		testo.scroll++
	}
};
Key.addListener(t);
e nel file di testo scritto quello che mi deve comparire compreso i tag html ma, esce tutto criptato!