home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / blackknight.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  481 b   |  22 lines

  1. maskperc._yscale = 0;
  2. canplay = false;
  3. if(_root._url.toLowerCase().indexOf("arcadetown.com") > -1)
  4. {
  5.    canplay = true;
  6. }
  7. canplay = true;
  8. this.onEnterFrame = function()
  9. {
  10.    perc = _root.getBytesLoaded() / _root.getBytesTotal();
  11.    maskperc._yscale = 100 * perc;
  12.    if(_root.getBytesLoaded() == _root.getBytesTotal() && _root.getBytesTotal() > 0)
  13.    {
  14.       delete this.onEnterFrame;
  15.       if(canplay)
  16.       {
  17.          gotoAndStop(33);
  18.       }
  19.    }
  20. };
  21. stop();
  22.