codice:
function preload(){ 
car = mc.getBytesLoaded(); 
tot = mc.getBytesTotal(); 
if(car > 1024 && car == tot){ 
mc.play(); 
clearInterval(idPreload); 
} 
} 
_root.numero=0;
pulsante.onRelease = function(){ 
clearInterval(idPreload); 
mc.loadMovie("filmato"+_root.numero+".swf"); 
_root.numero++,
idPreload = setInterval(preload,100); 
}