home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / 3lines.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2005-10-06  |  170 b   |  10 lines

  1. stop();
  2. this.onEnterFrame = function()
  3. {
  4.    if(this.getBytesTotal() <= this.getBytesLoaded())
  5.    {
  6.       delete this.onEnterFrame;
  7.       gotoAndPlay(2);
  8.    }
  9. };
  10.