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

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