codice:
onClipEvent (load) { 
this._visible = 0; 
_root.stop(); 
} 
onClipEvent (enterFrame) { 
car = _root.getBytesLoaded(); 
tot = _root.getBytesTotal(); 
if (car == tot) _root.nextFrame(); 

this._visible = 1; 
perc = barra._xscale = Math.round((car / tot) * 100); 
percentuale = perc + "%"; 
}