home *** CD-ROM | disk | FTP | other *** search
/ Champak 48 / cdrom_image.iso / Games / bossbash.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2007-09-28  |  364 b   |  19 lines

  1. stop();
  2. Stage.showMenu = false;
  3. link.onPress = function()
  4. {
  5.    getUrl("http://www.bomtoons.com", "_blank");
  6. };
  7. this.onEnterFrame = function()
  8. {
  9.    bt = _root.getBytesTotal();
  10.    bl = _root.getBytesLoaded();
  11.    perc = bl / bt * 100;
  12.    bar._xscale = perc;
  13.    if(perc >= 100)
  14.    {
  15.       delete this.onEnterFrame;
  16.       gotoAndStop("main");
  17.    }
  18. };
  19.