home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / 30k_starfighter.swf / scripts / DefineSprite_59_rapidFire / frame_1 / DoAction.as
Encoding:
Text File  |  2006-07-26  |  245 b   |  16 lines

  1. function RFGo()
  2. {
  3.    _Y = _Y + 4;
  4.    if(hitTest(_root.ship))
  5.    {
  6.       _root.ship.rapid();
  7.       this.removeMovieClip();
  8.    }
  9.    if(_Y >= 600)
  10.    {
  11.       this.removeMovieClip();
  12.    }
  13. }
  14. this.onEnterFrame = RFGo;
  15. process = "RFGo";
  16.