home *** CD-ROM | disk | FTP | other *** search
- stop();
- Speed = Math.random() * 4 + 1;
- this.onEnterFrame = function()
- {
- DistY = Math.abs(_Y - _root.Device._y);
- if(DistY <= 12)
- {
- if(this.hitTest(_root.laser) || this.hitTest(_root.WaveBlast))
- {
- play();
- _root.Hitter.play();
- }
- }
- if(_root.Special == "CrossBeam")
- {
- if(this.hitTest(_root.Crosslaser))
- {
- play();
- _root.Hitter.play();
- }
- }
- if(this._y < 0)
- {
- this.unloadMovie();
- }
- this._y -= Speed;
- };
-