home *** CD-ROM | disk | FTP | other *** search
- this.stat = "off";
- this.stop();
- this.onEnterFrame = function()
- {
- if(_parent._parent.mouse_press_flg)
- {
- this.stat = "on";
- this.gotoAndStop("on");
- }
- else
- {
- this.stat = "off";
- this.gotoAndStop("off");
- }
- if(this.stat == "on")
- {
- i = 0;
- while(i < _parent.neko_mc_list.length)
- {
- if(this.mc_hit.hitTest(_parent.neko_mc_list[i].mc_hit))
- {
- _parent.neko_mc_list[i].entryDeath();
- }
- i++;
- }
- }
- };
-