home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / oddech / bechpack / bechpack.exe / scripts / DefineSprite_559 / frame_2 / DoAction.as < prev   
Text File  |  2002-10-29  |  611b  |  30 lines

  1. if(Key.isDown(Key.RIGHT) and (eval("/:x") == 1 or eval("/:x") == 0))
  2. {
  3.    if(eval("/:y") != 2)
  4.    {
  5.       setProperty("plane", _X, getProperty("plane", _X) + 10);
  6.       tellTarget("_root.car.plane")
  7.       {
  8.          gotoAndStop("right");
  9.       }
  10.    }
  11. }
  12. else if(Key.isDown(Key.LEFT) and (eval("/:y") == 2 or eval("/:y") == 0))
  13. {
  14.    if(eval("/:x") != 1)
  15.    {
  16.       setProperty("plane", _X, getProperty("plane", _X) - 10);
  17.       tellTarget("_root.car.plane")
  18.       {
  19.          gotoAndStop("left");
  20.       }
  21.    }
  22. }
  23. else
  24. {
  25.    tellTarget("plane")
  26.    {
  27.       gotoAndStop("straight");
  28.    }
  29. }
  30.