codice:
this.stop();
loadMovieNum("filmato.swf", 2);
this.onEnterFrame = function()
{
	var car = _level2.getBytesLoaded();
	var tot = _level2.getBytesTotal();
	if(car >= tot && tot != undefined){
		this.onEnterFrame = undefined;
		this.play();
	}
}