F-4EJ_ADTW-keyboard.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <PropertyList>
  3. <key n="100">
  4. <name>d</name>
  5. <desc>open/close Canopy</desc>
  6. <binding>
  7. <command>nasal</command>
  8. <script>doors.doorsystem.crewexport();</script>
  9. </binding>
  10. </key>
  11. <key n="106">
  12. <name>j</name>
  13. <desc>open/close Dragchute</desc>
  14. <binding>
  15. <command>property-toggle</command>
  16. <property>/sim/model/dragchute/enable</property>
  17. </binding>
  18. </key>
  19. <key n="101">
  20. <name>e</name>
  21. <desc>Up/Down arresting hook</desc>
  22. <binding>
  23. <command>property-toggle</command>
  24. <property>controls/gear/tailhook</property>
  25. </binding>
  26. </key>
  27. <key n="360">
  28. <name>PageUp</name>
  29. <desc>Increase throttle or autopilot autothrottle</desc>
  30. <repeatable type="bool">true</repeatable>
  31. <binding>
  32. <command>nasal</command>
  33. <script>
  34. controls.incThrottle(getprop("instrumentation/fric-knob"), 1.0)
  35. </script>
  36. </binding>
  37. <mod-shift>
  38. <desc>Look front right</desc>
  39. <binding>
  40. <command>property-assign</command>
  41. <property>sim/current-view/goal-heading-offset-deg</property>
  42. <property>sim/view/config/front-right-direction-deg</property>
  43. </binding>
  44. </mod-shift>
  45. </key>
  46. <key n="361">
  47. <name>PageDown</name>
  48. <desc>Decrease throttle or autopilot autothrottle</desc>
  49. <repeatable type="bool">true</repeatable>
  50. <binding>
  51. <command>nasal</command>
  52. <script>
  53. controls.incThrottle(getprop("instrumentation/fric-knob")*(-1), 0.01)
  54. </script>
  55. </binding>
  56. <mod-shift>
  57. <desc>Look back right</desc>
  58. <binding>
  59. <command>property-assign</command>
  60. <property>sim/current-view/goal-heading-offset-deg</property>
  61. <property>sim/view/config/back-right-direction-deg</property>
  62. </binding>
  63. </mod-shift>
  64. </key>
  65. </PropertyList>