home *** CD-ROM | disk | FTP | other *** search
- cansmash = 1;
- this.onEnterFrame = function()
- {
- if(_root.startmoving == 1)
- {
- this._y -= _root.snowball.yspeed;
- if(_Y < -10 - _height)
- {
- _Y = 500;
- _X = random(500);
- cansmash = 1;
- }
- }
- if(_root.snowball.detector.hitTest(this._x,this._y,true))
- {
- if(_root.weight < 1200)
- {
- _root.snowball.play();
- }
- else if(cansmash == 1)
- {
- _root.snowball.smashup = 1;
- cansmash = 0;
- }
- }
- };
-