Dov'è l'errore???
codice:
loadVariablesNum("news.txt", 0);
_root.onData = function() {
	testo.html = true;
	testo.autoSize = "left";
	testo.htmlText = inizio;
	h = testo._height;
};
_root.onEnterFrame = function() {
	if ((testo._y + h) > 123) {
		testo._y -=  1;
	} else {
		testo._y = 210;
	}
};
stop();