home *** CD-ROM | disk | FTP | other *** search
- this.onEnterFrame = function()
- {
- this.dist = Math.sqrt((_root.ground._x + this._x - _root.doggy._x) * (_root.ground._x + this._x - _root.doggy._x) + (_root.ground._y + this._y - (_root.doggy._y - 17)) * (_root.ground._y + this._y - (_root.doggy._y - 17)));
- if(this.dist < 30)
- {
- _root.score = 0;
- _root.doggy.gotoAndStop(3);
- }
- };
-