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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater can_close="true" can_drag_on_left="false" can_minimize="true"
can_resize="false" height="570" min_height="570" min_width="780"
name="directory" rect_control="FloaterFindRect2"
title="Search Second Life" width="780">
<tab_container bottom="-570" follows="left|top|right|bottom" height="550" left="0"
mouse_opaque="false" name="Directory Tabs" tab_position="top" width="780">
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="All" left="1" mouse_opaque="false"
name="find_all_panel"
width="778">
<button bottom="-30" follows="top|left" font="SansSerifSmall" height="20"
label="Back"
left="10"
name="back_btn" width="70" />
<button bottom_delta="0" follows="top|left" font="SansSerifSmall" height="20"
label="Forward" left_delta="75"
name="forward_btn" width="70" />
<line_editor bevel_style="in"
border_style="line"
border_thickness="1"
bottom_delta="0"
enabled="true"
follows="top|left|right"
font="SansSerif"
handle_edit_keys_directly="false"
commit_on_focus_lost="false"
height="20"
hidden="false"
label="Search"
left_delta="80"
width="180"
max_length="254"
mouse_opaque="true"
name="search_editor"
select_all_on_focus_received="false"
select_on_focus="false"
tab_group="1"
tool_tip="Search Second Life" />
<button follows="top|right" font="SansSerif" height="20"
label="Search"
left_delta="185"
bottom_delta="0"
name="search_btn" width="70" />
<combo_box allow_text_entry="false"
bottom_delta="0" follows="right|top" height="18"
left_delta="100"
max_chars="20" mouse_opaque="true" name="Category"
width="128">
<combo_item name="AnyCategory" value="All">
Any Category
</combo_item>
<combo_item name="Classifieds" value="Classifieds">
Classifieds
</combo_item>
<combo_item name="Events" value="Events">
Events
</combo_item>
<combo_item name="Groups" value="Groups">
Groups
</combo_item>
<combo_item name="People" value="People">
People
</combo_item>
<combo_item name="Places" value="Places">
Places
</combo_item>
<combo_item name="Wiki" value="Wiki">
Wiki
</combo_item>
</combo_box>
<check_box bottom_delta="0"
control_name="ShowMatureFindAll" follows="right|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Include Mature content"
left_delta="133"
name="mature_check"
width="156" />
<web_browser name="find_browser"
bottom="25"
follows="top|left|bottom|right"
font="SansSerifSmall"
left="10"
right="-10"
top="-40" />
<text bottom="5"
follows="bottom|left"
halign="left"
left="10"
width="150"
name="status_text"
height="16" />
<text hidden="true" name="loading_text">Loading...</text>
<text hidden="true" name="done_text">Done</text>
<text hidden="true" name="redirect_404_url">http://secondlife.com/app/search/notfound.html</text>
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Classifieds" left="1" left_delta="68" mouse_opaque="false"
name="classified_panel" width="778">
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >" right="344"
mouse_opaque="true" name="Next >" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" right="258"
mouse_opaque="true" name="< Prev" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="128" />
<check_box bottom_delta="-18" control_name="ShowMatureClassifieds" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Include Mature content" left_delta="0" mouse_opaque="true"
name="incmature" width="156" />
<combo_box allow_text_entry="false" bottom="-24" follows="left|top" height="18" left="182"
max_chars="20" mouse_opaque="true" name="Category" width="128">
<combo_item name="AnyCategory" value="0">
Any Category
</combo_item>
<combo_item name="Shopping" value="1">
Shopping
</combo_item>
<combo_item name="LandRental" value="2">
Land Rental
</combo_item>
<combo_item name="PropertyRental" value="3">
Property Rental
</combo_item>
<combo_item name="SpecialAttraction" value="4">
Special Attraction
</combo_item>
<combo_item name="NewProducts" value="5">
New Products
</combo_item>
<combo_item name="Employment" value="6">
Employment
</combo_item>
<combo_item name="Wanted" value="7">
Wanted
</combo_item>
<combo_item name="Service" value="8">
Service
</combo_item>
<combo_item name="Personal" value="9">
Personal
</combo_item>
</combo_box>
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Browse" label_selected="Browse" left_delta="142" mouse_opaque="true"
name="Browse" width="85" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" mouse_opaque="true"
name="Search" width="70" visible="false"/>
<button bottom="-26" follows="right|top" font="SansSerif" halign="center" height="20"
label="Place an Ad..." label_selected="Place an Ad..." left="-140"
mouse_opaque="true" name="Place an Ad..." width="125" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Delete" label_selected="Delete" left="80"
mouse_opaque="true" name="Delete" width="80" />
<scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true" fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" width="225" />
<column label="Price" name="price" width="55" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" default_tab_group="1"
follows="left|top|right|bottom" height="533" label="Events" left="1"
mouse_opaque="false" name="events_panel" width="778">
<radio_group bottom="-40" draw_border="false" follows="left|top" height="40" left="4"
mouse_opaque="true" name="date_mode" width="300">
<radio_item bottom="-20" follows="left|top" height="20" left="0" mouse_opaque="true"
name="current" width="174">
In-Progress and Upcoming
</radio_item>
<radio_item bottom_delta="-10" follows="left|top" height="20" left="0" mouse_opaque="true"
name="date" width="56">
Date
</radio_item>
</radio_group>
<button bottom="-40" follows="left|top" font="SansSerif" halign="center" height="20"
label="<<" label_selected="<<" left_delta="54"
mouse_opaque="true" name="<<" tool_tip="Go back a day" width="36" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-36" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="center" height="14" left_delta="40" mouse_opaque="true"
name="date_text" text_color="1, 1, 1, 1" v_pad="0" width="48">
6/6
</text>
<button bottom="-40" follows="left|top" font="SansSerif" halign="center" height="20"
label=">>" label_selected=">>" left_delta="52"
mouse_opaque="true" name=">>" tool_tip="Go forward a day" width="36" />
<button bottom="-40" follows="left|top" font="SansSerif" halign="center" height="20"
label="Today" label_selected="Today" left_delta="48" mouse_opaque="true"
name="Today" tool_tip="Show today's events" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top"
font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289"
mouse_opaque="true" name="text" v_pad="0" width="90">
Category:
</text>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|top"
font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289"
mouse_opaque="true" name="text2" v_pad="0" width="90">
Name/Desc:
</text>
<combo_box allow_text_entry="false" bottom="-22" follows="left|top" height="18" left="379"
max_chars="20" mouse_opaque="true" name="category combo" width="180">
<!--text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top"
font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289"
mouse_opaque="true" name="text" v_pad="0" width="70">
Category:
</text>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|top"
font="SansSerifSmall" h_pad="0" halign="left" height="20" left="289"
mouse_opaque="true" name="text2" v_pad="0" width="70">
Name/Desc:
</text>
<combo_box allow_text_entry="false" bottom="-22" follows="left|top" height="18" left="359"
max_chars="20" mouse_opaque="true" name="category combo" width="200"-->
<combo_item name="All" value="0">
All
</combo_item>
<combo_item name="Discussion" value="18">
Discussion
</combo_item>
<combo_item name="Sports" value="19">
Sports
</combo_item>
<combo_item name="LiveMusic" value="20">
Live Music
</combo_item>
<combo_item name="Commercial" value="22">
Commercial
</combo_item>
<combo_item name="Nightlife/Entertainment" value="23">
Nightlife/Entertainment
</combo_item>
<combo_item name="Games/Contests" value="24">
Games/Contests
</combo_item>
<combo_item name="Pageants" value="25">
Pageants
</combo_item>
<combo_item name="Education" value="26">
Education
</combo_item>
<combo_item name="ArtsandCulture" value="27">
Arts and Culture
</combo_item>
<combo_item name="Charity/SupportGroups" value="28">
Charity/Support Groups
</combo_item>
<combo_item name="Miscellaneous" value="29">
Miscellaneous
</combo_item>
</combo_box>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-20"
follows="left|top" font="SansSerifSmall" height="18" left="379"
max_length="32" mouse_opaque="true" name="event_search_text" tab_group="1"
width="180" />
<check_box bottom="-30" control_name="ShowMatureEvents" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false" label="Show Mature"
left="569" mouse_opaque="true" name="incmature" width="120" />
<button bottom="-28" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="100" mouse_opaque="true"
name="Search" tool_tip="Search" width="80" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Delete" label_selected="Delete" left="80"
mouse_opaque="true" name="Delete" width="80" />
<scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true" fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" dynamicwidth="true" />
<column label="Time (PT)" name="date" sort="time" width="106" />
<column label="" name="event_id" width="-1" />
<column label="Time" name="time" width="-1" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >" right="344"
mouse_opaque="true" name="Next >" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" right="258"
mouse_opaque="true" name="< Prev" width="80" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Popular Places" left="1" mouse_opaque="false" name="popular_panel"
width="778">
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >" right="344"
mouse_opaque="true" name="Next >" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" right="258"
mouse_opaque="true" name="< Prev" width="80" />
<check_box bottom="-22" control_name="FindPlacesPictures" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Only show places with pictures" left="24" mouse_opaque="true"
name="incpictures" width="200" />
<check_box bottom_delta="-16" control_name="ShowMatureSims" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Include parcels with Mature Content" left="24" mouse_opaque="true"
name="incmature" width="204" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-38" drop_shadow_visible="true" follows="right|top"
font="SansSerifSmall" h_pad="0" halign="left" height="32" left_delta="326"
mouse_opaque="true"
name="These are the most popular places in the world, as measured by traffic, the amount of time people spend there."
v_pad="0" width="406">
These are the most popular places in the world, as measured by traffic,
the amount of time people spend there.
</text>
<scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true" fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" dynamicwidth="true" />
<column label="Traffic" name="dwell" width="70" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Land Sales" left="1" mouse_opaque="false" name="land_sales_panel"
width="778">
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >" right="390"
mouse_opaque="true" name="Next >" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" right="304"
mouse_opaque="true" name="< Prev" width="80" />
<combo_box allow_text_entry="false" bottom="-22" follows="left|top" height="18" left="4"
max_chars="20" mouse_opaque="true" name="type" width="125">
<combo_item name="AllTypes" value="All Types">
All Types
</combo_item>
<combo_item name="Auction" value="Auction">
Auction
</combo_item>
<combo_item name="MainlandSales" value="Mainland Sales">
For Sale - Mainland
</combo_item>
<combo_item name="EstateSales" value="Estate Sales">
For Sale - Estate
</combo_item>
</combo_box>
<combo_box allow_text_entry="false" bottom_delta="-18" follows="left|top" height="18"
left="4" max_chars="20" mouse_opaque="true" name="rating" width="125">
<combo_item name="PG&Mature" value="PG & Mature">
PG & Mature
</combo_item>
<combo_item name="PGonly" value="PG only">
PG only
</combo_item>
<combo_item name="Matureonly" value="Mature only">
Mature only
</combo_item>
</combo_box>
<check_box bottom="-22" control_name="FindLandPrice" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Price <= L$" left="132" mouse_opaque="true" name="pricecheck"
width="88" />
<check_box bottom_delta="-16" control_name="FindLandArea" follows="left|top"
font="SansSerifSmall" height="16" initial_value="true"
label="Area >= sq.m." left="132" mouse_opaque="true" name="areacheck"
width="102" />
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-22"
follows="left|top" font="SansSerifSmall" height="16" left="221"
max_length="10" mouse_opaque="true" name="priceedit" width="50" />
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom_delta="-16"
follows="left|top" font="SansSerifSmall" height="16" left="221"
max_length="10" mouse_opaque="true" name="areaedit" width="50" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left="278" mouse_opaque="true"
name="Search" width="70" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-38" drop_shadow_visible="true" follows="left|top"
font="SansSerifSmall" h_pad="0" halign="left" height="32" left="354"
mouse_opaque="true" name="land" v_pad="0" width="430">
Land can be bought direct for Linden Dollars (L$) or at auction for either L$ or US$.
To buy direct, visit the land and click on the place name in the title bar.
</text>
<scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true" fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="387">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" dynamicwidth="true" />
<column label="L$ Price" name="price" width="65" />
<column label="Area" name="area" width="50" />
<column label="L$/sq.m" name="per_meter" width="65" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Places" left="1" mouse_opaque="false" name="places_panel"
width="778">
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >" right="344"
mouse_opaque="true" name="Next >" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" right="258"
mouse_opaque="true" name="< Prev" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="128" />
<check_box bottom_delta="-18" control_name="ShowMatureSims" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Include parcels with Mature content" left_delta="0" mouse_opaque="true"
name="incmature" width="204" />
<combo_box allow_text_entry="false" bottom="-24" follows="left|top" height="18" left="182"
max_chars="20" mouse_opaque="true" name="Category" width="128">
<combo_item name="AnyCategory" value="any">
Any Category
</combo_item>
<combo_item name="LindenLocation" value="linden">
Linden Location
</combo_item>
<combo_item name="Adult" value="adult">
Adult
</combo_item>
<combo_item name="Arts&Culture" value="arts">
Arts & Culture
</combo_item>
<combo_item name="Business" value="store">
Business
</combo_item>
<combo_item name="Educational" value="educational">
Educational
</combo_item>
<combo_item name="Gaming" value="game">
Gaming
</combo_item>
<combo_item name="Hangout" value="gather">
Hangout
</combo_item>
<combo_item name="NewcomerFriendly" value="newcomer">
Newcomer Friendly
</combo_item>
<combo_item name="Parks&Nature" value="park">
Parks & Nature
</combo_item>
<combo_item name="Residential" value="home">
Residential
</combo_item>
<combo_item name="Shopping" value="shopping">
Shopping
</combo_item>
<combo_item name="Other" value="other">
Other
</combo_item>
</combo_box>
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="136" mouse_opaque="true"
name="Search" width="70" />
<scroll_list
name="results"
background_visible="false"
bottom="-513"
column_padding="0"
draw_border="true"
draw_heading="true"
fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1"
fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom"
height="464"
left="4"
mouse_opaque="true"
multi_select="false"
search_column="2"
width="339">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" dynamicwidth="true" />
<column label="Traffic" name="dwell" width="75" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="People" left="1" mouse_opaque="false" name="people_panel"
width="778">
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >" right="330"
mouse_opaque="true" name="Next >" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" right="244"
mouse_opaque="true" name="< Prev" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="200" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="210" mouse_opaque="true"
name="Search" width="70" />
<scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true" fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="326">
<column label="" name="icon" width="24" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" width="274" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="Groups" left="1" mouse_opaque="false" name="groups_panel"
width="778">
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >" right="344"
mouse_opaque="true" name="Next >" width="80" />
<button bottom_delta="0" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" right="258"
mouse_opaque="true" name="< Prev" width="80" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="200" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="210" mouse_opaque="true"
name="Search" width="70" />
<check_box bottom_delta="-16" control_name="ShowMatureGroups" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Include Mature groups" left="42" mouse_opaque="true"
name="incmature" width="204" />
<scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true"
draw_heading="true" fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="2" width="339">
<column label="" name="icon" width="24" sort="score" sort_ascending="false" />
<column label="" name="type" width="-1" />
<column label="Name" name="name" dynamicwidth="true" />
<column label="Members" name="members" width="100" halign="left" sort_ascending="false" />
<column label="" name="score" width="-1"/>
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
<panel border="true" bottom="-549" follows="left|top|right|bottom" height="533"
label="All (old)" left="1" mouse_opaque="false"
name="find_all_old_panel" width="778">
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="< Prev" label_selected="< Prev" left="80"
mouse_opaque="true" name="< Prev" width="60" />
<button bottom="-533" follows="left|bottom" font="SansSerif" halign="center"
height="20" label="Next >" label_selected="Next >"
mouse_opaque="true" name="Next >" width="60" />
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom="-24" drop_shadow_visible="true" follows="left|top" font="SansSerif"
h_pad="0" halign="left" height="16" left="4" mouse_opaque="true"
name="find" v_pad="0" width="50">
Find:
</text>
<line_editor bevel_style="in" border_style="line" border_thickness="1" bottom="-24"
follows="left|top" font="SansSerif" height="18" left_delta="38"
max_length="63" mouse_opaque="true" name="name" width="128" />
<button bottom="-26" follows="left|top" font="SansSerif" halign="center" height="20"
label="Search" label_selected="Search" left_delta="136" mouse_opaque="true"
name="Search" width="70" />
<check_box bottom="-22" control_name="ShowMatureFindAll" follows="left|top"
font="SansSerifSmall" height="16" initial_value="false"
label="Include Mature content" left_delta="78" mouse_opaque="true"
name="incmature" width="156" />
<scroll_list background_visible="false" bottom="-513" column_padding="0" draw_border="true"
draw_heading="false" fg_disable_color="1, 1, 1, 1"
fg_selected_color="1, 1, 1, 1" fg_unselected_color="1, 1, 1, 1"
follows="left|top|right|bottom" height="464" left="4" mouse_opaque="true"
multi_select="false" name="results" search_column="1" width="339">
<column label="" name="icon" width="24" />
<column label="Name" name="name" width="235" />
<column label="Price" name="price" width="90" />
<column label="Time (PT)" name="date" width="90" />
<column label="Time" name="time" width="-1" />
<column label="Traffic" name="dwell" width="90" />
<column label="Area" name="area" width="90" />
<column label="L$/sq.m" name="per_meter" width="90" />
<column label="Online" name="online" width="90" />
<column label="Members" name="members" width="90" />
</scroll_list>
<text bg_visible="false" border_drop_shadow_visible="false" border_visible="false"
bottom_delta="-20" drop_shadow_visible="true" follows="left|bottom"
font="SansSerifSmall" h_pad="0" halign="left" height="16" left="4"
mouse_opaque="true" name="result_text" v_pad="0" width="328" />
</panel>
</tab_container>
<panel follows="right|top" bottom="-560" height="470" left="340" name="classified_details_panel" width="440" />
<panel follows="right|top" bottom="-560" height="486" left="350" name="Panel Avatar" width="430" />
<panel follows="right|top" bottom="-560" height="470" left="340" name="event_details_panel" width="440" />
<panel follows="right|top" bottom="-580" height="515" left="350" name="group_details_panel_holder" width="430">
<panel follows="right|top" bottom="0" height="470" left="0" name="group_details_panel" width="430" />
</panel>
<panel follows="right|top" bottom="20" height="470" left="340" name="place_details_panel" width="440" />
<panel follows="right|top" bottom="20" height="470" left="385" name="place_details_small_panel"
width="395" />
</floater>
|