onClipEvent (load) {
loadMovie("nomefoto.jpg",clip_contenitore);
car=_root.clip_contenitore.getBytesLoaded()
tot=_root.clip_contenitore.getBytesTotal()
dif=int(car/tot*100)
_root.miabarra._xscale=dif
_root.clip_contenitore._x=29.3;
_root.clip_contenitore._y=23.3;
this.onEnterFrame=function(){
if(_root.clip_contenitore.getBytesTotal()==_root.g etBytesLoaded()){
delete this.onEnterFrame;
}
}
}