home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / oddech / space / spacecraft.exe / scripts / DefineSprite_240 / frame_2 / DoAction.as
Text File  |  2002-10-22  |  311b  |  14 lines

  1. _Y = _Y + yStep2;
  2. shipX = getProperty("/schiff", _X);
  3. shipY = getProperty("/schiff", _Y);
  4. dropX = _X;
  5. dropY = _Y;
  6. if(shipX - "30" < dropX and dropX < shipX + "30" and shipY - "30" < dropY and dropY < shipY + "30")
  7. {
  8.    tellTarget("../shield")
  9.    {
  10.       nextFrame();
  11.    }
  12.    removeMovieClip("");
  13. }
  14.