sul frame 20:
codice:
stop();
function preload(){
	car = _level1.getBytesLoaded();
	tot = _level1.getBytesTotal();
	perc = Math.round((car*100)/tot);
	if(car > 1024){
		loading.text = "Caricamento in corso... " + perc + "%";
		if(car == tot){
			clearInterval(a);
			loading.removeTextField();
			play();
		}
	}
}

puls.onRelease = function(){
	_root.createTextField("loading",10,200,200,200,18);
	loadMovieNum("filmato.swf",1);
	_level1._visible = 0;
	a = setInterval(preload,50);
}
quindi sull'ultimo frame (o quando vuoi far paritre il filmato B):

_level1_visible = 1;
_level1.play();