codice:
onClipEvent (load) { 
_root.stop(); 
_xscale = 0;
} 
onClipEvent (enterFrame) { 
car = _root.getBytesLoaded(); 
tot = _root.getBytesTotal(); 
_xscale = Math.ceil(car*100/tot); 
if (car>=tot){
_root.play();
}
}