-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInterfaceMenubar.xml
More file actions
96 lines (86 loc) · 2.04 KB
/
InterfaceMenubar.xml
File metadata and controls
96 lines (86 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<PropertyList>
<default>
<menu n="101">
<label>Voodoomaster</label>
<enabled type="bool">true</enabled>
<item>
<name>Pushback</name>
<label>Pushback</label>
<binding>
<command>nasal</command>
<script>
var pushback = gui.Dialog.new(
"sim/gui/voodoomaster/services/dialog",
"Aircraft/JPack/Voodoomaster/Services/Push_Pull.xml"
);
pushback.open();
</script>
</binding>
</item>
<item>
<name>SteeringMode</name>
<label>SteeringConfiguration</label>
<binding>
<command>nasal</command>
<script>
var steering = gui.Dialog.new(
"sim/gui/voodoomaster/steering/dialog",
"Aircraft/JPack/Voodoomaster/Steering/SteeringDialog.xml"
);
steering.open();
</script>
</binding>
</item>
<item>
<name>MigraineMode</name>
<label>Migraine mode</label>
<binding>
<command>property-toggle</command>
<property>voodoomaster/migraine-mode</property>
</binding>
</item>
<item>
<name>GroundCrew</name>
<label>Ground Crew</label>
<binding>
<command>nasal</command>
<script>
var crew = gui.Dialog.new(
"sim/gui/voodoomaster/services/dialog",
"Aircraft/JPack/Voodoomaster/Services/GroundServiceDialog.xml"
);
crew.open();
</script>
</binding>
</item>
</menu>
<menu n="102">
<name>SkyNet</name>
<label>SkyNet</label>
<enabled type="bool">true</enabled>
<item>
<name>SkyNetLogin</name>
<label>Login</label>
<enabled type="bool">true</enabled>
<binding>
<command>nasal</command>
<script>
var login=gui.Dialog.new("sim/gui/dialogs/ground/dialog", "Aircraft/JPack/SkyNet/Dialogs/Login.xml");
login.open();
</script>
</binding>
</item>
<item>
<name>SkyNetLogout</name>
<label>Logout</label>
<enabled type="bool">false</enabled>
<binding>
<command>nasal</command>
<script>
SkyNet.logout();
</script>
</binding>
</item>
</menu>
</default>
</PropertyList>