home *** CD-ROM | disk | FTP | other *** search
/ Champak 48 / cdrom_image.iso / Games / cannonballfollier3.swf / scripts / frame_33 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  309 b   |  21 lines

  1. if(Key.isDown(81))
  2. {
  3.    _root.gotoAndPlay("GameOver");
  4. }
  5. else if(Key.isDown(37))
  6. {
  7.    _root.goGame.mLessPower();
  8. }
  9. else if(Key.isDown(39))
  10. {
  11.    _root.goGame.mMorePower();
  12. }
  13. else if(Key.isDown(38))
  14. {
  15.    _root.goGame.mMoreAngle();
  16. }
  17. else if(Key.isDown(40))
  18. {
  19.    _root.goGame.mLessAngle();
  20. }
  21.