codice:
onClipEvent (load) { 
	_root.stop(); 
	main = true; 
} 
onClipEvent (enterFrame) { 
	if (main) { 
		car = _root.getBytesLoaded(); 
		tot = _root.getBytesTotal();
		progres = parseInt((car*100)/tot) + "%";
		if (car == tot) { 
			loadMovieNum ("suono.swf", 1); 
			main = false; 
			musica = true; 
		} 
	} 
	if (musica) { 
		car = _level1.getBytesLoaded(); 
		tot = _level1.getBytesTotal();
		if(car != undefined){
		progres = parseInt((car*100)/tot) + "%";
			if(car == tot){
				_level1.suono.start(0,99);
				_root.play(); 
			} 
		} 
	} 
}