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

  1. stop();
  2. bt._visible = false;
  3. cnt = 0;
  4. onEnterFrame = function()
  5. {
  6.    cnt++;
  7.    _visible = !(cnt % 2) ? false : true;
  8.    if(cnt > 12)
  9.    {
  10.       delete onEnterFrame;
  11.       _visible = true;
  12.       gotoAndStop(2);
  13.    }
  14. };
  15.