blob: 1bba8eb26446e76ae56e1a743e1956793e57179e (
plain)
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<?xml version="1.0" encoding="utf-8"?>
<menu
create_jump_keys="true"
layout="topleft"
mouse_opaque="false"
visible="false"
name="Gear Menu">
<menu_item_call
label="Touch"
layout="topleft"
enabled="true"
name="touch">
<menu_item_call.on_click
function="InspectObject.Touch"/>
<menu_item_call.on_visible
function="Object.VisibleTouch" />
</menu_item_call>
<menu_item_call
label="Sit"
layout="topleft"
name="sit">
<menu_item_call.on_click
function="InspectObject.Sit"/>
<menu_item_call.on_visible
function="Object.EnableSit" />
</menu_item_call>
<menu_item_call
label="Pay"
layout="topleft"
name="pay">
<menu_item_call.on_click
function="InspectObject.Pay"/>
<menu_item_call.on_visible
function="VisiblePayObject" />
</menu_item_call>
<menu_item_call
label="Buy"
layout="topleft"
enabled="true"
name="buy">
<menu_item_call.on_click
function="InspectObject.Buy"/>
<menu_item_call.on_visible
function="Object.VisibleBuy" />
</menu_item_call>
<menu_item_call
label="Take"
layout="topleft"
name="take">
<menu_item_call.on_click
function="Object.Take" />
<menu_item_call.on_enable
function="Object.VisibleTake"/>
</menu_item_call>
<menu_item_call
label="Take Copy"
layout="topleft"
name="take_copy">
<menu_item_call.on_click
function="InspectObject.TakeFreeCopy"/>
<menu_item_call.on_visible
function="Tools.VisibleTakeCopy"/>
</menu_item_call>
<menu_item_call
label="Open"
layout="topleft"
name="open">
<menu_item_call.on_click
function="InspectObject.Open"/>
<menu_item_call.on_visible
function="Object.VisibleOpen" />
</menu_item_call>
<menu_item_call
label="Edit"
layout="topleft"
name="report">
<menu_item_call.on_click
function="Object.Edit" />
<menu_item_call.on_enable
function="Object.VisibleEdit"/>
</menu_item_call>
<menu_item_call
label="Wear"
layout="topleft"
name="wear">
<menu_item_call.on_click
function="Object.AttachToAvatar" />
<menu_item_call.on_visible
function="Object.VisibleWear" />
</menu_item_call>
<menu_item_call
label="Report"
layout="topleft"
name="report">
<menu_item_call.on_click
function="Object.ReportAbuse" />
</menu_item_call>
<menu_item_call
label="Block"
layout="topleft"
name="block">
<menu_item_call.on_click
function="Object.Mute" />
<menu_item_call.on_visible
function="Object.VisibleMute" />
</menu_item_call>
<menu_item_call
enabled="false"
label="Zoom In"
layout="topleft"
name="zoom_in">
</menu_item_call>
<menu_item_call
label="Remove"
layout="topleft"
name="remove">
<menu_item_call.on_click
function="Object.Delete" />
<menu_item_call.on_visible
function="Object.VisibleDelete" />
</menu_item_call>
<menu_item_call
label="More Info"
layout="topleft"
name="more_info">
<menu_item_call.on_click
function="InspectObject.MoreInfo"/>
</menu_item_call>
</menu>
|