file.swf viene caricato in "promozione"; il getBytesTotal() deve controllare i byte di file.swf che sono stati caricati

nel frame 1 ho

stop();
this.promozione.loadMovie(file.swf);
this.onEnterFrame = function() {
this.stop();
promozione._alpha = 50;
car = this.promozione.getBytesLoaded();
tot = this.promozione.getBytesTotal();
if (car >= tot && tot>1024) {
gotoAndStop(10);
delete this.onEnterFrame;
}
};