sto riscontrando un problema con il preload, ho due livelli e frame.
Nel primo livello e frame ho il preload, nel secondo livello e frame ho un'animazione.
Questo è il Code:
onClipEvent (load) {
_root.stop();
}
onClipEvent (enterFrame) {
car = _root.locali.getBytesLoaded();
tot = _root.locali.getBytesTotal();
perc = Math.round((car*100)/tot);
_root.locali.barra._xscale= perc;
if (car>=tot){
nextFrame();
}
}
Quanda arriva al 100% non va nel secondo frame, per quale motivo.

Rispondi quotando