home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / peaceplane.swf / scripts / DefineSprite_185 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-09-05  |  230 b   |  14 lines

  1. stop();
  2. onEnterFrame = function()
  3. {
  4.    if(Key.isDown(32) || Key.isDown(65) || Key.isDown(83))
  5.    {
  6.       play();
  7.       onEnterFrame = null;
  8.    }
  9.    if(_root.player.health <= 0)
  10.    {
  11.       onEnterFrame = null;
  12.    }
  13. };
  14.