blob: a505b38087194206474bc8174b7230a5b9f1e201 (
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<toggleable_menu
layout="topleft"
name="Avatar Profile Menu">
<menu_item_call
label="IM"
layout="topleft"
name="im">
<menu_item_call.on_click
function="Profile.Commit"
parameter="im"/>
</menu_item_call>
<menu_item_call
label="Offer Teleport"
name="offer_teleport">
<menu_item_call.on_click
function="Profile.Commit"
parameter="offer_teleport"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="offer_teleport"/>
</menu_item_call>
<menu_item_call
label="Request Teleport"
name="request_teleport">
<menu_item_call.on_click
function="Profile.Commit"
parameter="request_teleport"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="request_teleport"/>
</menu_item_call>
<menu_item_call
label="Voice call"
layout="topleft"
name="voice_call">
<menu_item_call.on_click
function="Profile.Commit"
parameter="voice_call"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="voice_call"/>
</menu_item_call>
<menu_item_separator />
<menu_item_call
label="View chat history..."
layout="topleft"
name="chat_history">
<menu_item_call.on_click
function="Profile.Commit"
parameter="chat_history"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="chat_history"/>
</menu_item_call>
<menu_item_separator name="separator_chat_history"/>
<menu_item_call
label="Add Friend"
layout="topleft"
name="add_friend">
<menu_item_call.on_click
function="Profile.Commit"
parameter="add_friend"/>
<menu_item_call.on_visible
function="Profile.EnableItem"
parameter="add_friend"/>
</menu_item_call>
<menu_item_call
label="Remove Friend"
layout="topleft"
name="remove_friend">
<menu_item_call.on_click
function="Profile.Commit"
parameter="remove_friend"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="remove_friend"/>
</menu_item_call>
<menu_item_call
label="Invite to group..."
layout="topleft"
name="invite_to_group">
<menu_item_call.on_click
function="Profile.Commit"
parameter="invite_to_group"/>
</menu_item_call>
<menu_item_separator name="separator_invite_to_group"/>
<menu_item_call
label="Permissions"
layout="topleft"
name="agent_permissions">
<menu_item_call.on_click
function="Profile.Commit"
parameter="agent_permissions"/>
<menu_item_call.on_visible
function="Profile.EnableItem"
parameter="agent_permissions"/>
</menu_item_call>
<menu_item_call
label="Map"
layout="topleft"
name="map">
<menu_item_call.on_click
function="Profile.Commit"
parameter="can_show_on_map"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="can_show_on_map"/>
</menu_item_call>
<menu_item_call
label="Share"
layout="topleft"
name="share">
<menu_item_call.on_click
function="Profile.Commit"
parameter="share"/>
</menu_item_call>
<menu_item_call
label="Pay"
layout="topleft"
name="pay">
<menu_item_call.on_click
function="Profile.Commit"
parameter="pay"/>
</menu_item_call>
<menu_item_check
label="Block/Unblock"
layout="topleft"
name="block_unblock">
<menu_item_check.on_click
function="Profile.Commit"
parameter="toggle_block_agent"/>
<menu_item_check.on_check
function="Profile.CheckItem"
parameter="toggle_block_agent"/>
<menu_item_check.on_enable
function="Profile.EnableItem"
parameter="toggle_block_agent"/>
</menu_item_check>
<menu_item_separator name="separator_copy_options"/>
<menu_item_call
label="Copy Display Name"
layout="topleft"
name="copy_display_name">
<menu_item_call.on_click
function="Profile.Commit"
parameter="copy_display_name"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="copy_display_name"/>
</menu_item_call>
<menu_item_call
label="Copy Agent Name"
layout="topleft"
name="copy_name">
<menu_item_call.on_click
function="Profile.Commit"
parameter="copy_username"/>
<menu_item_call.on_enable
function="Profile.EnableItem"
parameter="copy_username"/>
</menu_item_call>
<menu_item_call
label="Copy Agent Id"
layout="topleft"
name="copy_id">
<menu_item_call.on_click
function="Profile.Commit"
parameter="copy_user_id"/>
</menu_item_call>
<menu_item_call
label="Copy Profile Link"
layout="topleft"
name="copy_link">
<menu_item_call.on_click
function="Profile.Commit"
parameter="copy_profile_link"/>
</menu_item_call>
</toggleable_menu>
|