blob: 792f6dbec8f032cd454a481b81cb55bf97ed61af (
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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<panel
follows="all"
height="240"
layout="topleft"
name="panel_snapshot_options"
width="490">
<button
follows="left|top|right"
font="SansSerif"
halign="left"
height="38"
image_overlay="Snapshot_Profile"
image_overlay_alignment="left"
image_top_pad="-2"
imgoverlay_label_space="10"
label="Post to My Profile Feed"
layout="topleft"
left="10"
name="save_to_profile_btn"
pad_left="10"
right="-10"
top="5">
<button.commit_callback
function="Snapshot.SaveToProfile" />
</button>
<button
follows="left|top|right"
font="SansSerif"
halign="left"
height="38"
image_overlay="Snapshot_Email"
image_overlay_alignment="left"
image_top_pad="-2"
imgoverlay_label_space="10"
label="Email"
layout="topleft"
left_delta="0"
name="save_to_email_btn"
pad_left="10"
right="-10"
top_pad="10">
<button.commit_callback
function="Snapshot.SaveToEmail" />
</button>
<button
follows="left|top|right"
font="SansSerif"
halign="left"
height="38"
image_overlay="Snapshot_Inventory"
image_overlay_alignment="left"
image_top_pad="-2"
imgoverlay_label_space="10"
label="Save to My Inventory (L$[AMOUNT])"
layout="topleft"
left_delta="0"
name="save_to_inventory_btn"
pad_left="10"
right="-10"
top_pad="10">
<button.commit_callback
function="Snapshot.SaveToInventory" />
</button>
<button
follows="left|top|right"
font="SansSerif"
halign="left"
height="38"
image_overlay="Snapshot_Download"
image_overlay_alignment="left"
image_top_pad="-2"
imgoverlay_label_space="10"
label="Save to My Computer"
layout="topleft"
left_delta="0"
name="save_to_computer_btn"
pad_left="10"
right="-10"
top_pad="10">
<button.commit_callback
function="Snapshot.SaveToComputer" />
</button>
<panel
background_visible="true"
bg_alpha_color="0.9 1 0.9 1"
bottom="-10"
follows="left|bottom|right"
font="SansSerifLarge"
halign="center"
height="20"
layout="topleft"
left_delta="0"
length="1"
name="succeeded_panel"
right="-10"
type="string"
visible="false">
<text
follows="all"
font="SansSerif"
halign="center"
height="18"
layout="topleft"
left="1"
length="1"
name="succeeded_lbl"
right="-1"
text_color="0.2 0.5 0.2 1"
top="4"
translate="false"
type="string">
Succeeded
</text>
</panel>
<panel
background_visible="true"
bg_alpha_color="1 0.9 0.9 1"
bottom="-10"
follows="left|bottom|right"
font="SansSerifLarge"
halign="center"
height="20"
layout="topleft"
left_delta="0"
length="1"
name="failed_panel"
right="-10"
type="string"
visible="false">
<text
follows="all"
font="SansSerif"
halign="center"
height="18"
layout="topleft"
left="1"
length="1"
name="failed_lbl"
right="-1"
text_color="0.5 0.2 0.2 1"
top="4"
translate="false"
type="string">
Failed
</text>
</panel>
</panel>
|