home *** CD-ROM | disk | FTP | other *** search
- stot = this.getBytesTotal();
- sloa = this.getBytesLoaded();
- if(stot != 0)
- {
- per = Math.floor(sloa / stot * 100);
- }
- else
- {
- per = 0;
- }
- mc_bar.mc._x = mc_bar.mc._width * (-1 + sloa / stot);
- txtPer = String(per) + "%";
- if(sloa >= 1 && stot >= 1 && sloa == stot)
- {
- gotoAndStop("main");
- inMenuFirst();
- }
- else
- {
- gotoAndPlay(2);
- }
-