home *** CD-ROM | disk | FTP | other *** search
- stop();
- this.onEnterFrame = function()
- {
- v = 0;
- while(v < this._parent._parent.vegarray.length)
- {
- var veb = this._parent._parent.vegarray[v];
- var veg = eval("this._parent._parent.bubs." + veb);
- if(this.wartmouth.hitTest(veg))
- {
- veg.removeMovieClip();
- this._parent._parent.vegarray = new Array();
- this.playhit = true;
- this._parent._parent.hitcount += 1;
- this._parent._parent.hurt.start();
- this.gotoAndStop("hit");
- trace(this._parent._parent.hitcount);
- delete this.onEnterFrame;
- }
- v++;
- }
- if(this.wartmouth.hitTest(this._parent._parent.bubs.as))
- {
- this._parent._parent.hurt.start();
- this._parent._parent.hitcount = 6;
- this._parent._parent.bubs.as.removeMovieClip();
- this._parent._parent.vegarray = new Array();
- this.playhit = true;
- this.gotoAndStop("hit");
- delete this.onEnterFrame;
- }
- };
-