home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / cone_crazy_2.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  253 b   |  13 lines

  1. loadingbar.onEnterFrame = function()
  2. {
  3.    if(_root.getBytesLoaded() >= _root.getBytesTotal())
  4.    {
  5.       _root.gotoAndPlay("init");
  6.    }
  7.    else
  8.    {
  9.       this._xscale = _root.getBytesLoaded() / _root.getBytesTotal() * 100;
  10.    }
  11. };
  12. stop();
  13.