2003-01-16 18:17:28 +00:00
|
|
|
<PropertyList>
|
|
|
|
|
|
|
|
<menu>
|
|
|
|
<label>File</label>
|
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<item>
|
2008-07-29 00:09:57 +00:00
|
|
|
<label>Load</label>
|
2003-01-18 17:29:26 +00:00
|
|
|
<binding>
|
2008-07-11 20:57:52 +00:00
|
|
|
<command>nasal</command>
|
2008-07-29 00:09:57 +00:00
|
|
|
<script>gui.load_flight()</script>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2008-07-29 00:09:57 +00:00
|
|
|
<label>Save</label>
|
2003-01-18 17:29:26 +00:00
|
|
|
<binding>
|
2008-07-11 20:57:52 +00:00
|
|
|
<command>nasal</command>
|
2008-07-29 00:09:57 +00:00
|
|
|
<script>gui.save_flight()</script>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-01-19 12:55:58 +00:00
|
|
|
<item>
|
|
|
|
<label>Reset</label>
|
|
|
|
<binding>
|
2008-07-09 12:26:18 +00:00
|
|
|
<command>reset</command>
|
2003-01-19 12:55:58 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<item>
|
|
|
|
<label>High-Res Snapshot</label>
|
2006-03-31 10:27:05 +00:00
|
|
|
<enabled>false</enabled>
|
2003-01-19 15:53:32 +00:00
|
|
|
<binding>
|
2004-09-27 02:40:10 +00:00
|
|
|
<command>hires-screen-capture</command>
|
2003-01-19 15:53:32 +00:00
|
|
|
</binding>
|
2003-01-18 17:29:26 +00:00
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Snapshot</label>
|
|
|
|
<binding>
|
2008-04-26 23:14:42 +00:00
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
var success = fgcommand("screen-capture");
|
|
|
|
var path = getprop("/sim/paths/screenshot-last");
|
|
|
|
if (success)
|
|
|
|
gui.popupTip("Screenshot written to '" ~ path ~ "'");
|
|
|
|
else
|
|
|
|
gui.popupTip("Error writing screenshot '" ~ path ~ "'");
|
|
|
|
</script>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Print Screen</label>
|
|
|
|
<binding>
|
|
|
|
<command>old-print-dialog</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2004-05-14 16:21:11 +00:00
|
|
|
<item>
|
|
|
|
<label>Sound Configuration</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>sound-dialog</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-02-21 16:20:14 +00:00
|
|
|
<item>
|
|
|
|
<label>Browse Internal Properties</label>
|
|
|
|
<binding>
|
2007-02-10 23:50:41 +00:00
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.property_browser()</script>
|
2003-02-21 16:20:14 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Logging</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>logging</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-01-16 18:17:28 +00:00
|
|
|
<item>
|
|
|
|
<label>Quit</label>
|
|
|
|
<binding>
|
2003-01-24 03:20:11 +00:00
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>exit</dialog-name>
|
2003-01-16 18:17:28 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
2003-01-18 17:29:26 +00:00
|
|
|
<label>View</label>
|
2003-01-16 18:17:28 +00:00
|
|
|
|
|
|
|
<item>
|
2003-01-18 17:29:26 +00:00
|
|
|
<label>Toggle 2D Panel</label>
|
2003-01-16 18:17:28 +00:00
|
|
|
<binding>
|
2003-01-18 17:29:26 +00:00
|
|
|
<command>property-toggle</command>
|
|
|
|
<property>/sim/panel/visibility</property>
|
2003-01-16 18:17:28 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-06-17 17:48:37 +00:00
|
|
|
<item>
|
2007-11-19 16:26:15 +00:00
|
|
|
<label>View Options</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>view</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Rendering Options</label>
|
2003-06-17 17:48:37 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>rendering</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2008-02-16 08:26:59 +00:00
|
|
|
<item>
|
2008-06-11 21:20:43 +00:00
|
|
|
<label>Cockpit View Options</label>
|
2008-02-16 08:26:59 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2008-06-11 21:20:43 +00:00
|
|
|
<dialog-name>cockpit-view</dialog-name>
|
2008-02-16 08:26:59 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2008-06-11 19:22:22 +00:00
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<item>
|
|
|
|
<label>Adjust View Distance</label>
|
|
|
|
<binding>
|
2005-07-05 08:51:18 +00:00
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>pilot_offset</dialog-name>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
2006-06-07 19:44:29 +00:00
|
|
|
<label>Adjust HUD Properties</label>
|
2003-01-18 17:29:26 +00:00
|
|
|
<binding>
|
2005-11-09 10:42:34 +00:00
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>hud</dialog-name>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2006-05-08 14:36:09 +00:00
|
|
|
|
2003-09-11 19:35:18 +00:00
|
|
|
<item>
|
|
|
|
<label>Instant Replay</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>replay</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2003-01-18 17:29:26 +00:00
|
|
|
|
2003-11-29 14:20:00 +00:00
|
|
|
<item>
|
|
|
|
<label>Adjust LOD Ranges</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>static-lod</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2003-01-18 17:29:26 +00:00
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
2003-02-21 16:20:14 +00:00
|
|
|
<label>Location</label>
|
2003-01-25 22:12:08 +00:00
|
|
|
|
2003-01-26 20:19:15 +00:00
|
|
|
<item>
|
2003-12-07 06:08:19 +00:00
|
|
|
<label>Position Aircraft (on ground)</label>
|
2003-01-26 20:19:15 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2003-12-07 06:08:19 +00:00
|
|
|
<dialog-name>location-on-ground</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Position Aircraft (in air)</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>location-in-air</dialog-name>
|
2003-01-26 20:19:15 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-11-27 23:43:43 +00:00
|
|
|
<item>
|
|
|
|
<label>Select Airport from List</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>airports</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-04-04 22:42:53 +00:00
|
|
|
<item>
|
|
|
|
<label>Random Attitude</label>
|
|
|
|
<binding>
|
|
|
|
<command>property-assign</command>
|
|
|
|
<property>/sim/presets/trim</property>
|
|
|
|
<value>false</value>
|
|
|
|
</binding>
|
|
|
|
<binding>
|
|
|
|
<command>property-randomize</command>
|
|
|
|
<property>/orientation/pitch-deg</property>
|
|
|
|
<min>0</min>
|
|
|
|
<max>360</max>
|
|
|
|
</binding>
|
|
|
|
<binding>
|
|
|
|
<command>property-randomize</command>
|
|
|
|
<property>/orientation/roll-deg</property>
|
|
|
|
<min>0</min>
|
|
|
|
<max>360</max>
|
|
|
|
</binding>
|
|
|
|
<binding>
|
|
|
|
<command>property-randomize</command>
|
|
|
|
<property>/orientation/heading-deg</property>
|
|
|
|
<min>0</min>
|
|
|
|
<max>360</max>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2005-10-19 19:22:16 +00:00
|
|
|
<item>
|
|
|
|
<label>Tower position</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2005-12-09 10:34:43 +00:00
|
|
|
<dialog-name>location-of-tower</dialog-name>
|
2005-10-19 19:22:16 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-01-25 22:12:08 +00:00
|
|
|
</menu>
|
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<menu>
|
|
|
|
<label>Autopilot</label>
|
2005-12-09 10:34:43 +00:00
|
|
|
<name>autopilot</name>
|
2003-01-18 17:29:26 +00:00
|
|
|
|
|
|
|
<item>
|
2003-01-18 22:04:50 +00:00
|
|
|
<label>Autopilot Settings</label>
|
2003-01-18 17:29:26 +00:00
|
|
|
<binding>
|
2003-01-18 22:04:50 +00:00
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>autopilot</dialog-name>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2003-01-18 22:04:50 +00:00
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<item>
|
2006-05-10 09:43:18 +00:00
|
|
|
<label>Route Manager</label>
|
2003-01-18 17:29:26 +00:00
|
|
|
<binding>
|
2006-05-08 14:36:09 +00:00
|
|
|
<command>dialog-show</command>
|
2006-05-10 09:43:18 +00:00
|
|
|
<dialog-name>route-manager</dialog-name>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2006-05-08 14:36:09 +00:00
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<item>
|
|
|
|
<label>Pop Waypoint</label>
|
|
|
|
<binding>
|
2006-05-08 14:36:09 +00:00
|
|
|
<command>nasal</command>
|
|
|
|
<script>setprop("/autopilot/route-manager/input", "@pop")</script>
|
2003-01-18 17:29:26 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Clear Route</label>
|
|
|
|
<binding>
|
2006-05-08 14:36:09 +00:00
|
|
|
<command>nasal</command>
|
|
|
|
<script>setprop("/autopilot/route-manager/input", "@clear")</script>
|
2003-01-19 15:53:32 +00:00
|
|
|
</binding>
|
2003-01-18 17:29:26 +00:00
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Set Lat/Lon Format</label>
|
2003-01-19 15:53:32 +00:00
|
|
|
<binding>
|
2006-06-17 16:36:06 +00:00
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
var f = getprop(var d = "/sim/lon-lat-format") + 1;
|
|
|
|
setprop(d, f < 0 ? 0 : f > 2 ? 0 : f);
|
|
|
|
</script>
|
2003-01-19 15:53:32 +00:00
|
|
|
</binding>
|
2003-01-18 17:29:26 +00:00
|
|
|
</item>
|
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
2008-04-20 16:19:59 +00:00
|
|
|
<label>Environment</label>
|
2003-01-18 17:29:26 +00:00
|
|
|
|
2005-05-15 09:25:17 +00:00
|
|
|
<item>
|
|
|
|
<label>Weather Scenario</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>weather_scenario</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-01-16 18:17:28 +00:00
|
|
|
<item>
|
2003-06-08 14:44:53 +00:00
|
|
|
<label>Weather Conditions</label>
|
2003-01-16 18:17:28 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
2003-06-08 14:44:53 +00:00
|
|
|
<dialog-name>weather</dialog-name>
|
2003-01-16 18:17:28 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<item>
|
|
|
|
<label>Clouds</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>clouds</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-09-17 15:49:39 +00:00
|
|
|
<item>
|
2007-12-05 07:58:33 +00:00
|
|
|
<label>Time Settings</label>
|
2003-09-17 15:49:39 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>timeofday</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2008-03-04 08:46:52 +00:00
|
|
|
<item>
|
|
|
|
<label>Rain/Snow Settings</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>rainsnow</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2003-01-18 17:29:26 +00:00
|
|
|
</menu>
|
|
|
|
|
2003-02-21 16:20:14 +00:00
|
|
|
<menu>
|
2003-03-02 23:05:15 +00:00
|
|
|
<label>Equipment</label>
|
|
|
|
|
2004-05-15 21:50:51 +00:00
|
|
|
<item>
|
|
|
|
<label>Fuel and Payload</label>
|
2005-12-09 10:34:43 +00:00
|
|
|
<name>fuel-and-payload</name>
|
2004-05-15 21:50:51 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showWeightDialog()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-03-02 23:05:15 +00:00
|
|
|
<item>
|
2004-03-23 21:41:32 +00:00
|
|
|
<label>Radio Settings</label>
|
2003-03-02 23:05:15 +00:00
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>radios</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2003-02-21 16:20:14 +00:00
|
|
|
|
2004-05-03 19:06:02 +00:00
|
|
|
<item>
|
|
|
|
<label>GPS Settings</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>gps</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2004-03-23 21:41:32 +00:00
|
|
|
<item>
|
|
|
|
<label>Instrument Settings</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>instruments</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-02-21 16:20:14 +00:00
|
|
|
<item>
|
|
|
|
<label>System Failures</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>system-failures</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Instrument Failures</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>instrument-failures</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
</menu>
|
|
|
|
|
2003-09-17 15:49:39 +00:00
|
|
|
<menu>
|
|
|
|
<label>ATC/AI</label>
|
2003-10-10 15:12:04 +00:00
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Frequencies</label>
|
|
|
|
<binding>
|
|
|
|
<command>ATC-freq-search</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2007-11-19 16:26:15 +00:00
|
|
|
|
2003-09-17 15:49:39 +00:00
|
|
|
<item>
|
|
|
|
<label>Options</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>atc-ai</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2008-06-11 18:40:51 +00:00
|
|
|
</menu>
|
|
|
|
|
|
|
|
<menu>
|
2008-06-12 05:45:01 +00:00
|
|
|
<label>Network</label>
|
2008-06-11 18:40:51 +00:00
|
|
|
<name>multiplayer</name>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Chat</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>chat</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Chat Menu</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>chat-menu</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2007-11-19 16:26:15 +00:00
|
|
|
|
2008-06-11 18:40:51 +00:00
|
|
|
<item>
|
2008-06-11 19:22:22 +00:00
|
|
|
<label>Pilot List</label>
|
2008-06-11 18:40:51 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>multiplayer.dialog.show()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2003-09-17 15:49:39 +00:00
|
|
|
</menu>
|
|
|
|
|
2003-01-21 02:13:02 +00:00
|
|
|
<menu>
|
|
|
|
<label>Debug</label>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Reload GUI</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>gui</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2003-03-02 13:45:39 +00:00
|
|
|
|
2004-06-24 02:09:53 +00:00
|
|
|
<item>
|
|
|
|
<label>Reload Input</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>input</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2003-03-02 13:45:39 +00:00
|
|
|
<item>
|
|
|
|
<label>Reload Panel</label>
|
|
|
|
<binding>
|
|
|
|
<command>panel-load</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2004-02-03 20:12:51 +00:00
|
|
|
<item>
|
|
|
|
<label>Reload Autopilot</label>
|
|
|
|
<binding>
|
|
|
|
<command>reinit</command>
|
|
|
|
<subsystem>xml-autopilot</subsystem>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2006-02-15 10:33:38 +00:00
|
|
|
<item>
|
|
|
|
<label>Nasal Console</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>nasal-console</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2006-08-05 07:34:53 +00:00
|
|
|
<item>
|
|
|
|
<label>Stopwatch</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>stopwatch-dialog</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2005-04-19 13:43:44 +00:00
|
|
|
<item>
|
|
|
|
<label>Development Keys</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help/debug")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2007-11-18 12:20:17 +00:00
|
|
|
<item>
|
|
|
|
<label>Configure Development Extensions</label>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>devel-extensions</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2007-05-26 11:43:27 +00:00
|
|
|
<item>
|
|
|
|
<label>Dump Scene Graph</label>
|
|
|
|
<binding>
|
|
|
|
<command>dump-scenegraph</command>
|
|
|
|
</binding>
|
|
|
|
</item>
|
2007-11-19 16:26:15 +00:00
|
|
|
|
2008-04-20 18:28:11 +00:00
|
|
|
<item>
|
|
|
|
<label>Print Statistics</label>
|
|
|
|
<binding>
|
|
|
|
<command>property-assign</command>
|
|
|
|
<property>/sim/rendering/print-statistics</property>
|
|
|
|
<value>true</value>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Cycle On-Screen Statistics</label>
|
|
|
|
<binding>
|
2008-04-21 14:21:14 +00:00
|
|
|
<command>property-adjust</command>
|
2008-04-20 18:28:11 +00:00
|
|
|
<property>/sim/rendering/on-screen-statistics</property>
|
2008-04-21 14:21:14 +00:00
|
|
|
<step type="int">1</step>
|
2008-04-20 18:28:11 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2003-01-21 02:13:02 +00:00
|
|
|
</menu>
|
2006-05-22 17:42:57 +00:00
|
|
|
|
2003-01-18 17:29:26 +00:00
|
|
|
<menu>
|
|
|
|
<label>Help</label>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Help</label>
|
2003-01-21 02:13:02 +00:00
|
|
|
<binding>
|
|
|
|
<command>old-help-dialog</command>
|
|
|
|
</binding>
|
2003-01-18 17:29:26 +00:00
|
|
|
</item>
|
|
|
|
|
2006-10-21 10:19:04 +00:00
|
|
|
<item>
|
|
|
|
<label>Joystick Information</label>
|
|
|
|
<name>joystick-info</name>
|
|
|
|
<binding>
|
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>joystick-info</dialog-name>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2005-04-19 13:43:44 +00:00
|
|
|
<item>
|
|
|
|
<label>Basic Keys</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help/basic")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Common Aircraft Keys</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help/common")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<label>Aircraft Help</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>gui.showHelpDialog("/sim/help")</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2007-12-04 10:51:45 +00:00
|
|
|
<item>
|
|
|
|
<label>Toggle Glide Slope Tunnel</label>
|
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>
|
|
|
|
var p = "/sim/rendering/glide-slope-tunnel";
|
|
|
|
setprop(p, var i = !getprop(p));
|
|
|
|
gui.popupTip("Glide slope tunnel " ~ (i ? "enabled" : "disabled"));
|
|
|
|
</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
|
2006-02-22 17:03:42 +00:00
|
|
|
<item>
|
|
|
|
<label>Start Tutorial</label>
|
2006-02-24 11:00:50 +00:00
|
|
|
<name>tutorial-start</name>
|
2006-02-22 17:03:42 +00:00
|
|
|
<binding>
|
2007-03-24 20:56:40 +00:00
|
|
|
<command>dialog-show</command>
|
|
|
|
<dialog-name>tutorial</dialog-name>
|
2006-02-22 17:03:42 +00:00
|
|
|
</binding>
|
|
|
|
</item>
|
2003-01-16 18:17:28 +00:00
|
|
|
|
2006-02-22 17:03:42 +00:00
|
|
|
<item>
|
|
|
|
<label>End Tutorial</label>
|
2006-02-24 11:00:50 +00:00
|
|
|
<name>tutorial-stop</name>
|
2006-02-24 15:54:45 +00:00
|
|
|
<enabled>false</enabled>
|
2006-02-22 17:03:42 +00:00
|
|
|
<binding>
|
|
|
|
<command>nasal</command>
|
|
|
|
<script>tutorial.stopTutorial()</script>
|
|
|
|
</binding>
|
|
|
|
</item>
|
|
|
|
</menu>
|
2003-01-16 18:17:28 +00:00
|
|
|
|
2003-03-29 15:01:56 +00:00
|
|
|
</PropertyList>
|