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

  1. this.stop();
  2. this.onEnterFrame = function()
  3. {
  4.    i = 0;
  5.    while(i < _parent.neko_mc_list.length)
  6.    {
  7.       if(this.mc_hit.hitTest(_parent.neko_mc_list[i].mc_hit))
  8.       {
  9.          _parent.neko_mc_list[i].entryDeath();
  10.       }
  11.       i++;
  12.    }
  13. };
  14.