Per aggiungere il testo di caricamento (100%) a questo preload
com edevo fare?

codice:
onClipEvent (load) {
	total = _root.getBytesTotal();
	_root.an=1;	
}
onClipEvent (enterFrame) {
	total = _root.getBytesTotal();
	loaded = _root.getBytesLoaded();
	percent = int(loaded/total*100);
	text = percent+"%";
	this.gotoAndStop(percent);
	if (loaded == total and _root.an==1) {
	_root.gotoAndPlay("s5");
	_root.an=0;
	}
}
Grazie