home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / neko_juppiki.swf / scripts / DefineSprite_69 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-03-20  |  259 b   |  16 lines

  1. function entryMark(n)
  2. {
  3.    if(n >= 10)
  4.    {
  5.       n = 10;
  6.       if(this.ok_flg == false)
  7.       {
  8.          this.gotoAndPlay("ok");
  9.          this.ok_flg = true;
  10.       }
  11.    }
  12.    this.mc_mark.gotoAndStop(n + 1);
  13. }
  14. this.ok_flg = false;
  15. this.stop();
  16.