ho un preload con un orologetto che scorre ma non riesco a passare alla scena successiva, all'interno sul primo frame questa as:

car = _root.getBytesLoaded();
tot = _root.getBytesTotal();
perc = parseInt((car*100)/tot);
decim = parseInt((car*10)/tot);
cent = parseInt((car*1)/tot);
if (car == tot) {
_root.counter.mc_centinaia.centinaia.valore = 1;
_root.counter.mc_decine.decine._y = _root.counter.mc_decine.decine.base_y;
_root.counter.valore = 1;
if (_root.counter._alpha==0) {
gotoAndStop(3);
}
}
_root.counter.mc_unita.valore = perc;
_root.counter.mc_decine.valore = decim;
_root.counter.mc_centinaia.valore = cent;

sul secondo frame:
gotoAndPlay(1);

e sul terzo:
stop(0)

dov'è l'errore?