<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Albrecht+Boucher</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Albrecht+Boucher"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/Albrecht_Boucher"/>
	<updated>2026-06-23T05:43:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlDialog/de&amp;diff=1190942</id>
		<title>LlDialog/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlDialog/de&amp;diff=1190942"/>
		<updated>2014-05-23T09:59:01Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: Link funktioniert nicht mehr&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL_Function/avatar/de|avatar|sim=*}}{{LSL_Function/chat/de|chat_channel}}{{LSL_Function/de|sort=Dialog|func_id=247|func_sleep=1.0|func_energy=10.0|func=llDialog&lt;br /&gt;
|p1_type=key|p1_name=avatar|p1_desc&lt;br /&gt;
|p2_type=string|p2_name=message|p2_desc=Nachricht die Angezeigt werden soll&lt;br /&gt;
|p3_type=list|p3_name=buttons|p3_desc=Beschriftung der Knöpfe (Buttons)&lt;br /&gt;
|p4_type=integer|p4_name=chat_channel|p4_desc&lt;br /&gt;
|func_desc=Zeigt eine blaube Dialogbox in der oberen rechten ecke von &#039;&#039;&#039;avatar&#039;&#039;&#039;s Bildschirm mit &#039;&#039;&#039;message&#039;&#039;&#039; als nachricht und &#039;&#039;&#039;buttons&#039;&#039;&#039;, sowie ein Ignore Button. Dies hat viele Anwendungsmöglichkeiten von einfacher Nachrichtenübermittlung zu komplexen Menu-Systemen. &lt;br /&gt;
|func_footnote=Wenn ein Button gedrückt wird, sagt der &#039;&#039;&#039;avatar&#039;&#039;&#039; den text des Buttons auf dem &#039;&#039;&#039;chat_channel&#039;&#039;&#039;.&amp;lt;br/&amp;gt;Die Position wo der Chat erzeugt wird, ist die Position wo der Dialog erzeugende Prim war, als der Dialog-Button gedrückt wurde.&lt;br /&gt;
|spec&lt;br /&gt;
|caveats=&lt;br /&gt;
*Es gibt keine Möglichkeit eine Dialogbox via Script zu entfernen.&lt;br /&gt;
*Es gibt keine Möglichkeit für ein Script herauszufinden, ob der User den kleinen &amp;quot;Ignore&amp;quot; Button gedrückt hat (durch das drücken dieses Buttons wird kein Chat erzeugt).&lt;br /&gt;
*Es gibt keine Möglichkeit die Eingaben über die Dialogbox vom regulären Chat des selben Nutzers zu unterscheiden.&lt;br /&gt;
**Es ist wichtig anzunehmen, dass die Antwort nicht eine der Buttons ist.&lt;br /&gt;
*Wenn der hörende Prim außerhalb der 20 Meter Reichweite des sendenden Prims ist, wenn der Button gedrückt wird, wird er die Antwort nicht hören.&lt;br /&gt;
**Diese Beschränkung betrifft ebenfalls Attachments, wenn der Träger mehr als 20 Meter vom listener entfernt ist.&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;tt&amp;gt;message&amp;lt;/tt&amp;gt; Beschränkungen===&lt;br /&gt;
*&#039;&#039;&#039;message&#039;&#039;&#039; muss weniger als 512 bytes lang und darf nicht leer sein. llDialog wird &amp;quot;llDialog: must supply a message&amp;quot; auf dem [[DEBUG_CHANNEL/de|DEBUG_CHANNEL]] rufen. Falls die Nachricht größer oder gleich 512 bytes ist, wird es (ebenfalls auf dem [[DEBUG_CHANNEL/de|debug channel]]) &amp;quot;llDialog: message too long, must be less than 512 characters&amp;quot; rufen; in beiden Fällen wird die Dialogbox nicht für den &#039;&#039;&#039;avatar&#039;&#039;&#039; erstellt werden.&lt;br /&gt;
*Der Client zeigt lediglich 8 Zeilen der &#039;&#039;&#039;message&#039;&#039;&#039; und erstellt eine Scroll Leiste falls sie länger ist. Siehe [[#Darstellung]].&lt;br /&gt;
&lt;br /&gt;
===&amp;lt;tt&amp;gt;buttons&amp;lt;/tt&amp;gt; Beschränkungen===&lt;br /&gt;
*Falls &#039;&#039;&#039;buttons&#039;&#039;&#039; leer ist, wird es den Vorgabewert [&amp;quot;OK&amp;quot;] senden.&lt;br /&gt;
*Ein Error wird auf dem [[DEBUG_CHANNEL/de|DEBUG_CHANNEL]] gerufen, falls...&lt;br /&gt;
**mehr als 12 Buttons da sind.&lt;br /&gt;
**eines der list items kein string ist.&lt;br /&gt;
**eines der list items eine Länge (in Bytes) von null oder größer als 24 aufweißt.&lt;br /&gt;
|examples=&amp;lt;lsl&amp;gt;integer channel = 1000;&lt;br /&gt;
&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llListen(channel,&amp;quot;&amp;quot;, &amp;quot;&amp;quot;,&amp;quot;&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    touch_start(integer count)&lt;br /&gt;
    {&lt;br /&gt;
        llDialog(llDetectedKey(0), &amp;quot;This is a test dialog.\n\nPlease choose one of the below options.&amp;quot;,&lt;br /&gt;
                 [&amp;quot;Yes&amp;quot;, &amp;quot;No&amp;quot;, &amp;quot;0&amp;quot;, &amp;quot;1&amp;quot;], channel);&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    listen(integer chan, string name, key id, string mes)&lt;br /&gt;
    {&lt;br /&gt;
        if(id == llGetOwnerKey(id))//won&#039;t listen to objects unless they aren&#039;t in the region.&lt;br /&gt;
            llSay(0,name + &amp;quot; (&amp;quot; + (string)llGetObjectDetails(id, (list)OBJECT_POS) + &amp;quot;) chose option &amp;quot; + mes);&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers=&amp;lt;lsl&amp;gt;//Compact function to put buttons in &amp;quot;correct&amp;quot; human-readable order&lt;br /&gt;
integer channel;&lt;br /&gt;
&lt;br /&gt;
list order_buttons(list buttons)&lt;br /&gt;
{&lt;br /&gt;
    return llList2List(buttons, -3, -1) + llList2List(buttons, -6, -4)&lt;br /&gt;
         + llList2List(buttons, -9, -7) + llList2List(buttons, -12, -10);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {   // Create random channel within range [-1000000000,-2000000000]&lt;br /&gt;
	channel = (integer)(llFrand(-1000000000.0) - 1000000000.0);&lt;br /&gt;
&lt;br /&gt;
	llListen(channel,&amp;quot;&amp;quot;, &amp;quot;&amp;quot;,&amp;quot;&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
	&lt;br /&gt;
    touch_start(integer total_number)&lt;br /&gt;
    {&lt;br /&gt;
        llDialog(llDetectedKey(0),&amp;quot;\nPlease choose an option:\n&amp;quot;,&lt;br /&gt;
	    order_buttons([&amp;quot;1&amp;quot;, &amp;quot;2&amp;quot;, &amp;quot;3&amp;quot;, &amp;quot;4&amp;quot;, &amp;quot;5&amp;quot;, &amp;quot;6&amp;quot;, &amp;quot;7&amp;quot;, &amp;quot;8&amp;quot;, &amp;quot;9&amp;quot;, &amp;quot;10&amp;quot;]),channel);&lt;br /&gt;
    }&lt;br /&gt;
	&lt;br /&gt;
    listen(integer _chan, string _name, key _id, string _option)&lt;br /&gt;
    {&lt;br /&gt;
        llSay(0, _name + &amp;quot; chose option &amp;quot; + _option);&lt;br /&gt;
    }&lt;br /&gt;
}&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|constants={{#vardefine:constants_nb}}&lt;br /&gt;
{{{!}}&lt;br /&gt;
{{!}}- valign=&amp;quot;top&amp;quot;&lt;br /&gt;
{{!}}&lt;br /&gt;
{{{!}}{{Prettytable|style=margin-top:0;}}&lt;br /&gt;
{{!}}-{{Hl2}}&lt;br /&gt;
! colspan=&amp;quot;4&amp;quot; {{!}} Button Anordnung&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}}9&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
{{!}}10&lt;br /&gt;
{{!}}11&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}}6&lt;br /&gt;
{{!}}7&lt;br /&gt;
{{!}}8&amp;amp;nbsp;&amp;amp;nbsp;&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}}3&lt;br /&gt;
{{!}}4&lt;br /&gt;
{{!}}5&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}}0&lt;br /&gt;
{{!}}1&lt;br /&gt;
{{!}}2&lt;br /&gt;
{{!}}}&lt;br /&gt;
{{!}}&lt;br /&gt;
{{LSL Constants/Chat/de}}&lt;br /&gt;
{{!}}}&lt;br /&gt;
|helpers&lt;br /&gt;
|related&lt;br /&gt;
|notes=&lt;br /&gt;
Um Dialogboxen zu nutzen um Menu-Systeme zu erstellen, siehe [[Dialog Menus/de|Dialog Menus: Eine Schritt für Schritt Anleitung]] (Richtet sich an Beginner).&lt;br /&gt;
&lt;br /&gt;
===Tipps===&lt;br /&gt;
Es ist eine gute Idee einen sehr negativen Channel zu nutzen (aber niemals negativer als die negativste 32-bit Integer, welche -2.147.483.648 ist), &#039;&#039;z.B.&#039;&#039;,&lt;br /&gt;
&amp;lt;lsl&amp;gt;// Erzeuge einen zufälligen Channel zwischen [-1000000000,-2000000000]&lt;br /&gt;
integer channel = (integer)(llFrand(-1000000000.0) - 1000000000.0);&lt;br /&gt;
&lt;br /&gt;
llDialog(llDetectedKey(0), &amp;quot;Please choose one of the below options:&amp;quot;,&lt;br /&gt;
    [&amp;quot;Yes&amp;quot;, &amp;quot;No&amp;quot;, &amp;quot;0&amp;quot;, &amp;quot;1&amp;quot;], channel);&amp;lt;/lsl&amp;gt;&lt;br /&gt;
Negative Channels sind für Script Kommunikation beliebt, da der Client nicht direkt auf diesen Channels chatten kann (&amp;quot;/-xxxx message&amp;quot; wird nicht &amp;quot;message&amp;quot; auf dem channel &amp;quot;-xxxx&amp;quot; senden, sondern &amp;quot;/-xxxx message&amp;quot; auf dem Channel Null ausgeben). Die einzige Möglichkeit, dies vor [[llTextBox/de|llTextBox]] zu bewerkstelligen war, [[llDialog/de|llDialog]] zu nutzen, was auf 24 Bytes beschränkt ist.&lt;br /&gt;
&lt;br /&gt;
Man kann ziemlich sicher sein, dass jedes der eigenen gescripteten Objekte einen einmaligen Chat Channel hat, mit Hilfe dieser Funktion:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;lsl&amp;gt;integer dialog_channel; // top of script in variables&lt;br /&gt;
&lt;br /&gt;
integer channel() { // top of script in functions&lt;br /&gt;
    return (integer)(&amp;quot;0x&amp;quot;+llGetSubString((string)llGetKey(),-8,-1));&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
dialog_channel = channel(); // somewhere in actual script execution, such as state_entry()&amp;lt;/lsl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Darstellung===&lt;br /&gt;
&lt;br /&gt;
Wenn &#039;&#039;&#039;message&#039;&#039;&#039; mehr als 8 Zeilen benötigt, wird eine vertikale Scroll-Leiste in der Dialogbox erscheinen.&lt;br /&gt;
&lt;br /&gt;
Der text in der Nachricht kann mit &amp;quot;\n&amp;quot; (für neue Zeile) und &amp;quot;\t&amp;quot; (für tab) formattiert werden. Die Schriftart und -größe zu beeinflußen.&lt;br /&gt;
&lt;br /&gt;
Es gibt keinen Weg die Größe oder Farbe der Dialogbox zu verändern.&lt;br /&gt;
&lt;br /&gt;
|also_events=&lt;br /&gt;
{{LSL DefineRow||[[listen/de|listen]]|}}&lt;br /&gt;
|also_functions=&lt;br /&gt;
{{LSL DefineRow||[[llListen/de|llListen]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llTextBox/de|llTextBox]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llRegionSay/de|llRegionSay]]|}}&lt;br /&gt;
{{LSL DefineRow||[[llWhisper/de|llWhisper]]|Sendet Chat in einem 10 Meter Radius}}&lt;br /&gt;
{{LSL DefineRow||[[llSay/de|llSay]]|Sendet Chat in einem 20 Meter Radius}}&lt;br /&gt;
{{LSL DefineRow||[[llShout/de|llShout]]|Sendet Chat in einem 100 Meter Radius}}&lt;br /&gt;
{{LSL DefineRow||[[llInstantMessage/de|llInstantMessage]]|Sendet Chat an einen bestimmten User}}&lt;br /&gt;
{{LSL DefineRow||[[llOwnerSay/de|llOwnerSay]]|Sendet Chat lediglich zum Besitzer}}&lt;br /&gt;
|also_tests&lt;br /&gt;
|cat1=Chat&lt;br /&gt;
|cat2=Communications&lt;br /&gt;
|cat3=Dialog&lt;br /&gt;
|cat4}}&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LSL_HTTP_server&amp;diff=1167577</id>
		<title>LSL HTTP server</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LSL_HTTP_server&amp;diff=1167577"/>
		<updated>2012-05-22T20:13:27Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: Removing Apez. Its not longer exists&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL Header|ml=*}}&lt;br /&gt;
== Introduction ==&lt;br /&gt;
This is the counterpart to [[llHTTPRequest]].  While llHTTPRequest enables LSL scripts request data from HTTP-accessible sources, HTTP-in enables outside sources to request data from scripts in Second Life.  The key difference is that llHTTPRequest exchanges data when the script in SL wants; HTTP-in allows outside sources to determine when they need to communicate with scripts in SL.&lt;br /&gt;
&lt;br /&gt;
Prior to HTTP-in, similar functionality could be achieved by [[HTTP Polling|polling]] with [[llHTTPRequest]], [[llEmail]] and [[:Category:LSL_XML-RPC|XML-RPC]].  All three are cumbersome and the latter two have serious scalability bottlenecks.&lt;br /&gt;
&lt;br /&gt;
It is important to note that LSL HTTP servers cannot use HTML. See [[#Other_Limitations|Other Limitations]] for details.&lt;br /&gt;
&lt;br /&gt;
== Uses ==&lt;br /&gt;
* Easily get data from LSL scripts to outside viewers, scripts or servers.&lt;br /&gt;
** Web front end for a visitor counter or other statistics accumulator.&lt;br /&gt;
* Easily get data into LSL scripts from outside viewers, scripts or servers.&lt;br /&gt;
** A store with a web front end that communicates to an in-world object to exchange L$ and inventory items.&lt;br /&gt;
** Inworld game for which an external program handles the primary game logic that needs to manipulate inworld items.&lt;br /&gt;
* HUD UI when used with [[llSetContentType]]. See [[HTML HUD Demo]].&lt;br /&gt;
Gory Technical Details follow.  Or jump straight to the [[LSL_http_server/examples | Script Examples]].&lt;br /&gt;
&lt;br /&gt;
== Script API ==&lt;br /&gt;
* &#039;&#039;&#039;[[LlRequestURL|key llRequestURL()]]&#039;&#039;&#039;&lt;br /&gt;
: Request a new LSL Server public URL. &lt;br /&gt;
: An http_request event will be triggered with success or failure and include the returned key&lt;br /&gt;
: HTTP-in uses port 12046, and HTTPS-in uses port 12043.&lt;br /&gt;
: NOTE: URL&#039;s are assigned to the script that called them, an http_request event will not be triggered in a script separate from the one that requested the URL.&lt;br /&gt;
&amp;lt;lsl&amp;gt;request_id = llRequestURL();&amp;lt;/lsl&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;[[LlRequestSecureURL|key llRequestSecureURL()]]&#039;&#039;&#039;&lt;br /&gt;
: Similar to &#039;&#039;llRequestURL&#039;&#039; except requests an HTTPS / SSL URL.&lt;br /&gt;
: An http_request event will be triggered with success or failure and include the returned key&lt;br /&gt;
&amp;lt;lsl&amp;gt;request_id = llRequestSecureURL();&amp;lt;/lsl&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;[[LlReleaseURL|llReleaseURL(string url)]]&#039;&#039;&#039;&lt;br /&gt;
: Clear the specific URL, used for both secure and non-secure URLs.&lt;br /&gt;
&amp;lt;lsl&amp;gt;llReleaseURL(&amp;quot;http://sim3015.aditi.lindenlab.com:12046/cap/3ff4f3f2-ea08-76c1-cef6-a22b4a573a7c&amp;quot;);&amp;lt;/lsl&amp;gt;&lt;br /&gt;
* &#039;&#039;&#039;[[Http_request|http_request(key id, string method, string body)]]&#039;&#039;&#039;&lt;br /&gt;
: Event triggered when an URL is hit:&lt;br /&gt;
:* id is unique to this request&lt;br /&gt;
:* Supported methods are GET/POST/PUT/DELETE&lt;br /&gt;
:* body: The body of the request.&lt;br /&gt;
: Event also triggered with response to &#039;&#039;llRequestURL&#039;&#039; and &#039;&#039;llRequestSecureURL&#039;&#039;&lt;br /&gt;
:* id matches the key returned by &#039;&#039;llRequestURL&#039;&#039; or &#039;&#039;llRequestSecureURL&#039;&#039;&lt;br /&gt;
:* method == [[URL_REQUEST_GRANTED]] for success, [[URL_REQUEST_DENIED]] for failure to get an URL&lt;br /&gt;
:* body is the public URL.  If unable to get a public URL body will be empty.&lt;br /&gt;
* &#039;&#039;&#039;[[LlHTTPResponse|llHTTPResponse(key id, integer status, string body)]]&#039;&#039;&#039;&lt;br /&gt;
: Send &#039;&#039;body&#039;&#039; to the requester with status code &#039;&#039;status&#039;&#039;&lt;br /&gt;
:* id is the id from http_request that maps to the specific request&lt;br /&gt;
:* sending a response to the requestor will clear the request and delete information associated with it&lt;br /&gt;
* &#039;&#039;&#039;[[LlGetHTTPHeader|string llGetHTTPHeader(key id, string header)]]&#039;&#039;&#039;&lt;br /&gt;
: Returns the string for the specified header in the specified request. All received headers are converted to lower case and this function is case-sensitive.  The returned string is limited to 255 characters.&lt;br /&gt;
:* Supported headers are:&lt;br /&gt;
::* &amp;quot;x-script-url&amp;quot;: The base url, as originally received from [[llRequestURL]] or [[llRequestSecureURL]].&lt;br /&gt;
::* &amp;quot;x-path-info&amp;quot;: Any trailing path information from the requested url&lt;br /&gt;
::* &amp;quot;x-query-string&amp;quot;: Any query arguments, the text past a ? in the url&lt;br /&gt;
::* &amp;quot;x-remote-ip&amp;quot;: IP address of the host that made the request&lt;br /&gt;
::* &amp;quot;user-agent&amp;quot;: The user-agent header as reported by the requester&lt;br /&gt;
:* Supported headers sent by &#039;&#039;&#039;[[LlHTTPRequest|llHTTPRequest()]]&#039;&#039;&#039;&lt;br /&gt;
::* &amp;quot;x-secondlife-shard&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-object-name&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-object-key&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-region&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-local-position&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-local-rotation&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-local-velocity&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-owner-name&amp;quot;&lt;br /&gt;
::* &amp;quot;x-secondlife-owner-key&amp;quot;&lt;br /&gt;
 requested url: &#039;&#039;https://sim3015.aditi.lindenlab.com:12043/cap/a7717681-2c04-e4ac-35e3-1f01c9861322/foo/bar?arg=gra&#039;&#039;&lt;br /&gt;
 x-script-url: &#039;&#039;https://sim3015.aditi.lindenlab.com:12043/cap/a7717681-2c04-e4ac-35e3-1f01c9861322&#039;&#039;&lt;br /&gt;
 x-path-info: &#039;&#039;/foo/bar&#039;&#039;&lt;br /&gt;
 x-query-string: &#039;&#039;arg=gra&#039;&#039;&lt;br /&gt;
: This header information is valid for 30 seconds, or until [[llHTTPResponse]] is called.&lt;br /&gt;
* &#039;&#039;&#039;[[Changed|changed(integer change)]]&#039;&#039;&#039;&lt;br /&gt;
:* [[CHANGED_REGION_START]]: New changed() event triggered on region startup.&lt;br /&gt;
* &#039;&#039;&#039;[[LlGetFreeURLs|integer llGetFreeURLs()]]&#039;&#039;&#039;&lt;br /&gt;
: Returns the number of URLs available to this script.&lt;br /&gt;
&lt;br /&gt;
== URL Lifetime Limitations ==&lt;br /&gt;
* URLs are &#039;&#039;&#039;temporary&#039;&#039;&#039;!&lt;br /&gt;
* URLs will be lost in the following cases, all detectable by the script events listed with them.&lt;br /&gt;
** On object derez/rez: [[on_rez]]&lt;br /&gt;
** On script save/reset: &#039;&#039;[[default]] [[state_entry]]() (trickier in multi-state scripts)&lt;br /&gt;
** On region cross or TP(attachments): [[changed]]() {{LSLGC|Events|event}}, [[CHANGED_REGION]] and [[CHANGED_TELEPORT]]&lt;br /&gt;
--(I&#039;ve been testing this have found that TP&#039;s within a region DO NOT cause a URL to be lost, therefore, you do not need to request a new URL on CHANGED_TELEPORT, because CHANGED_REGION will handle a TP to a different region.  If you choose to request a URL after a TP, i recommend releasing the old URL to be sure you don&#039;t have too many used. --Stone Tremont Aug 8th 2010)&lt;br /&gt;
** On region restart: [[changed]]() event, &#039;&#039;new&#039;&#039; flag [[CHANGED_REGION_START]]&lt;br /&gt;
* When urls are &#039;lost&#039; it means that all public urls for that script are gone, new ones will need to be requested and the new urls will &#039;&#039;&#039;&#039;&#039;not&#039;&#039;&#039;&#039;&#039; resemble the old ones.&lt;br /&gt;
* Maintaining persistent URLs will require building or using an external service similar to how [http://en.wikipedia.org/wiki/Dynamic_DNS Dynamic DNS] services work for tying domain names to dynamic IP addresses.&lt;br /&gt;
&lt;br /&gt;
Contributed HTTP-in URL mapping implementations and services:&lt;br /&gt;
* A Dynamic DNS service running on Google App Engine (contributed as an example) can be found in the forums [http://forums-archive.secondlife.com/54/33/323981/1.html here].&lt;br /&gt;
* Yet another one, running on GAE, with password protected and private domains.  http://wiki.secondlife.com/wiki/Public_Object_DNS&lt;br /&gt;
* The [http://www.silverday.net/sqndns SilverDay ObjectDNS] is an easy to use dns-mapping-service with many configurable options (password protection, write protection, etc.) and an optional web-interface. The scripts are available here on the wiki (LSL-Script Library/[[Silverday ObjectDNS]]).&lt;br /&gt;
&lt;br /&gt;
== Resource Limitations ==&lt;br /&gt;
* There are a limited number of URLs available in each region, split by land ownership exactly like prim limits.&lt;br /&gt;
** Use [[llGetFreeURLs]] to get the exact number of available URLs for the script.&lt;br /&gt;
** The number of allowed URLs is the same as the number of allowed prims on the parcel the object is over.&lt;br /&gt;
**: &#039;&#039;Object owner does not matter, all objects over a parcel will use the resource pool for that parcel.&#039;&#039;&lt;br /&gt;
**: &#039;&#039;Like prims, all the parcels owned by the same owner and in the same region share the same pool of resources.&#039;&#039;&lt;br /&gt;
**: &#039;&#039;If you have two parcels in a region that each support 100 URLs, then you could use all 200 in object(s) on a single parcel.&#039;&#039;&lt;br /&gt;
** The region&#039;s object bonus factor does not apply to available URLs.&lt;br /&gt;
**: &#039;&#039;If a parcel has a max of 300 prims in a region with a 2x bonus factor there will only be 150 urls allowed.&#039;&#039;&lt;br /&gt;
* Each resident has their own unique pool of available URLs with a max of 38 URLs per resident.&lt;br /&gt;
** This is 1 per attachment point, but all 38 could be used by a single attachment for example.&lt;br /&gt;
* Vehicles are special and lazily moved to resident pools by the following logic:&lt;br /&gt;
** Any object that has a resident sitting on it is a &#039;vehicle&#039;&lt;br /&gt;
** Vehicles will use the url resources from the parcel they are over until the cross a parcel border.&lt;br /&gt;
**: &#039;&#039;Specifically this prevents anyone from breaking your vending machine by sitting on it and making it a &#039;vehicle&#039;.&#039;&#039;&lt;br /&gt;
** When any object using URL resources with a resident sitting on it crosses a parcel boundary the resources will switch to the first sitting resident with enough resources.  If no sitting agents have enough resources then the resources from the parcel being moved onto will be used.  If even then there are not enough resources to use then the vehicle will be blocked from moving.&lt;br /&gt;
**: &#039;&#039;In short we do everything we can to find a pool to host the resources needed by the vehicle, but will block movement if we can&#039;t.&#039;&#039;&lt;br /&gt;
* Parcel Sale: When a parcel is sold such that it changes the total available URLs in the region for either resident (seller or buyer) such that more URLs are being used than are available some objects will be returned.  &lt;br /&gt;
** The objects returned will be from youngest object to oldest object of those using URLs in each category in order of object category: Temporary, Other, Group, Owner, Selected/Sat upon.&lt;br /&gt;
**: &#039;&#039;The &#039;&#039;&#039;only&#039;&#039;&#039; time objects are possibly returned is when parcels change owner, and only if more resources are being used than allowed.&#039;&#039;&lt;br /&gt;
**: &#039;&#039;We return youngest temporary objects before older temporary objects before younger &#039;other&#039; (owned by non-group, non-parcel-owner) objects etc.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Other Limitations ==&lt;br /&gt;
* Size of the body of the requests will be [[limit]]ed to 2k [[bytes]].&lt;br /&gt;
* Size of headers of requests will be limited to 255 bytes. This is per header, not total.&lt;br /&gt;
* The size of responses to requests is not currently limited, but this is subject to review during testing.&lt;br /&gt;
* The content type of the returned data is always &#039;text/plain; charset=utf-8&#039;&lt;br /&gt;
*: &#039;&#039;Allowing more content type options is a possibility for the future, but not guaranteed.&#039;&#039;&lt;br /&gt;
* There is a cap of 64 in flight requests per script. This is based on the maximum number of pending events in LSL. After hitting the 64 request limit, the simulator cap server returns &#039;503 Service Unavailable&#039; to the inbound request.&lt;br /&gt;
* &#039;&#039;We may throttle the rate we accept hits at the CAP server level as well.  This is possible, but has not yet been decided.&#039;&#039;&lt;br /&gt;
* HTML can be used to in-client browser, including media on a prim, with some restrictions. See [[llSetContentType]]&lt;br /&gt;
* If making a parser, remember that you should probably restrict access to only Linden Lab HTML URLs as to not have your bandwith stolen.&lt;br /&gt;
* It is important to note that when appending a query string to a cap URL there MUST be a trailing slash between the cap guid and the query string token &#039;?&#039;. IE https://sim123.agni.lindenlab.com/cap/f73b4b94-012d-44f2-bd0c-16c328321221?arg=gra will return an HTTP 500, but https://sim123.agni.lindenlab.com/cap/f73b4b94-012d-44f2-bd0c-16c328321221/?arg=gra will succeed. (This doesn&#039;t seem to be true.) (I have confirmed: the slash is required when appending a query sting using the &#039;?&#039; token. --Stone Tremont)&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[LSL_http_server/examples | Script Examples]]&lt;br /&gt;
* [[LSL_http_server/design | Design Document]]&lt;br /&gt;
* Design Jira:{{jira|SVC-1086}}&lt;br /&gt;
&lt;br /&gt;
{{LSLC|HTTP}}&lt;br /&gt;
{{LSLC|Communications}}&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Failsafename2key&amp;diff=1159557</id>
		<title>Failsafename2key</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Failsafename2key&amp;diff=1159557"/>
		<updated>2011-12-13T20:56:00Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This script is a example for a failsafe name2key lookup.&lt;br /&gt;
The script will return results also when some of the given providers are unavailable.&lt;br /&gt;
&lt;br /&gt;
Main Script:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
list Servers = [&amp;quot;http://kubwa.de/_slworld/name2key.php?name=&amp;quot;,&lt;br /&gt;
                &amp;quot;http://w-hat.com/name2key?terse=1&amp;amp;name=&amp;quot;,&lt;br /&gt;
                &amp;quot;https://n2k.danardlabs.com/n2k_io.php?action=getkey&amp;amp;verbose=0&amp;amp;username=&amp;quot;,&lt;br /&gt;
                &amp;quot;http://kdc.ethernia.net/sys/name2key.php?name=&amp;quot;];&lt;br /&gt;
                &lt;br /&gt;
list LookUpQueue;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    link_message(integer Sender, integer Num, string Str, key ID)&lt;br /&gt;
    {&lt;br /&gt;
        if (ID == &amp;quot;Name2Key.Lookup&amp;quot;)&lt;br /&gt;
        {&lt;br /&gt;
            LookUpQueue = LookUpQueue + [llHTTPRequest(llList2String(Servers, 0) + llEscapeURL(Str),&lt;br /&gt;
                                                       [HTTP_METHOD, &amp;quot;GET&amp;quot;, HTTP_VERIFY_CERT, FALSE],&lt;br /&gt;
                                                       &amp;quot;&amp;quot;), 0, Str, Num, Sender];&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    http_response(key Request, integer Status, list Meta, string Data)&lt;br /&gt;
    {&lt;br /&gt;
        integer Found = llListFindList(LookUpQueue, [Request]);&lt;br /&gt;
        if (Found &amp;gt; -1)&lt;br /&gt;
        {&lt;br /&gt;
            list Temp = llParseString2List(Data, [&amp;quot;,&amp;quot;, &amp;quot;;&amp;quot;, &amp;quot; &amp;quot;, &amp;quot;:&amp;quot;, &amp;quot;\n&amp;quot;, &amp;quot;|&amp;quot;], []);&lt;br /&gt;
            integer i;&lt;br /&gt;
            integer LoopFound = -1;&lt;br /&gt;
            for (i = 0; i &amp;lt; llGetListLength(Temp); ++i)&lt;br /&gt;
            {&lt;br /&gt;
                if (llStringLength(llList2String(Temp, i)) == 36 &amp;amp;&amp;amp; llList2Key(Temp, i) != NULL_KEY)&lt;br /&gt;
                 {LoopFound = i;}&lt;br /&gt;
            }&lt;br /&gt;
            if (LoopFound &amp;gt; -1)&lt;br /&gt;
            {&lt;br /&gt;
                llMessageLinked(llList2Integer(LookUpQueue, Found + 4), llList2Integer(LookUpQueue, Found + 3),&lt;br /&gt;
                                &amp;quot;Found&amp;quot;, llList2Key(Temp, LoopFound));&lt;br /&gt;
                LookUpQueue = llDeleteSubList(LookUpQueue, Found, Found + 4);&lt;br /&gt;
            }&lt;br /&gt;
            else&lt;br /&gt;
            {&lt;br /&gt;
                if (llList2Integer(LookUpQueue, Found + 1) + 1 &amp;lt; llGetListLength(LookUpQueue) - 1)&lt;br /&gt;
                {&lt;br /&gt;
                    LookUpQueue = llListReplaceList(LookUpQueue, [llHTTPRequest(llList2String(Servers,&lt;br /&gt;
                                                                                              llList2Integer(LookUpQueue,&lt;br /&gt;
                                                                                                             Found + 1) + 1) +&lt;br /&gt;
                                                                                llEscapeURL(llList2String(LookUpQueue, Found + 2)),&lt;br /&gt;
                                                                                [HTTP_METHOD, &amp;quot;GET&amp;quot;, HTTP_VERIFY_CERT, FALSE],&lt;br /&gt;
                                                                                &amp;quot;&amp;quot;), llList2Integer(LookUpQueue, Found + 1) + 1],&lt;br /&gt;
                                                    Found, Found + 1);&lt;br /&gt;
                }&lt;br /&gt;
                else&lt;br /&gt;
                {&lt;br /&gt;
                    llMessageLinked(llList2Integer(LookUpQueue, Found + 4), llList2Integer(LookUpQueue, Found + 3),&lt;br /&gt;
                                    &amp;quot;Not-Found&amp;quot;, NULL_KEY);&lt;br /&gt;
                    LookUpQueue = llDeleteSubList(LookUpQueue, Found, Found + 4);&lt;br /&gt;
                }&lt;br /&gt;
            }&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example usage:&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        llListen(1, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;, &amp;quot;&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
    listen(integer chan, string name, key id, string msg)&lt;br /&gt;
    {&lt;br /&gt;
        llMessageLinked(LINK_THIS, llRound(llFrand(9999)), msg, &amp;quot;Name2Key.Lookup&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
    link_message(integer Sender, integer Num, string Str, key ID)&lt;br /&gt;
    {&lt;br /&gt;
        llOwnerSay((string)Sender + &amp;quot; =&amp;gt; &amp;quot; + (string)Num + &amp;quot;&amp;gt; &amp;quot; + Str + &amp;quot;: &amp;quot; + (string)ID);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For questions please ask Simba Fuhr in Second Life.&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Linden_Bear/de&amp;diff=491183</id>
		<title>Linden Bear/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Linden_Bear/de&amp;diff=491183"/>
		<updated>2009-09-15T21:55:37Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Linden Bear/de to Linden Bären:&amp;amp;#32;übersetz ins Deutsche (fehlt noch ein bisschen)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Linden Bären]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Linden_B%C3%A4ren&amp;diff=491173</id>
		<title>Linden Bären</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Linden_B%C3%A4ren&amp;diff=491173"/>
		<updated>2009-09-15T21:55:37Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Linden Bear/de to Linden Bären:&amp;amp;#32;übersetz ins Deutsche (fehlt noch ein bisschen)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Linden Bear|Viewer=*|Glossary=*}}&lt;br /&gt;
[[Image:Linden Bear.jpg|right|thumb|200px|Vorlage Linden Bär]]Viele Lindens der Vergangenheit und Gegenwart haben ihre eigene persönliche und einzigartigen Bären erschaffen um sie mit den Bewohnern zu teilen wenn sie fragen. Die meisten dieser Linden Bären sind Änderungen vom Original Linden Bär von [[User: Nicole Linden | Linden Nicole]], das auf der rechten Seite zu sehen ist. Dieser Artikel listet eine unvollständige Liste dieser Linden Bären.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot;/&amp;gt;&lt;br /&gt;
== Linden Bären ==&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Amber Linden Bear.jpg|200px]]&lt;br /&gt;
|[[File:Amber Linden Bear 2008.png|200px]]&lt;br /&gt;
|[[Image:Alexa_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Amber Linden|Amber Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Amber Linden|Amber Linden]]&amp;lt;br&amp;gt;2008&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Alexa Linden|Alexa Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Alexa_Linden_Bear_2.jpg|200px]]&lt;br /&gt;
|[[Image:Aric_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Benjamin-Linden-Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Aric Linden|Aric Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Benjamin Linden|Benjamin Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:BigPapi Linden|BigPapi Linden]]&amp;lt;ref&amp;gt;Den BigPapi Linden Bär ist ironischerweise sehr klein (^_^)&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:BigPapi_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Blondin Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Blue Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Alexa Linden|Alexa Linden]]&amp;lt;br&amp;gt;2008&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Blondin Linden|Blondin Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Blue Linden|Blue Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Blue Linden Bear 1.20.jpg|200px]]&lt;br /&gt;
|[[Image:Brent Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Brent Linden Bear V.2!.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Blue Linden|Blue Linden]]&amp;lt;br&amp;gt;Version 1.20&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Brent Linden|Brent Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Brent Linden|Brent Linden]]&amp;lt;br /&amp;gt;(v.2)&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Catherine_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Calyle_Linden_Bear.png|200px]]&lt;br /&gt;
|[[Image:CG Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Catherine Linden|Catherine Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Calyle Linden|Calyle Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:CG Linden|CG Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Coco_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Cogsworth_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Colton_Linden_Puppet_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Coco Linden|Coco Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cogsworth Linden|Cogsworth Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Colton Linden|Colton Linden]]&amp;lt;br&amp;gt;Puppet Bear&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Colton Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Cyan_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Cyan Linden Bear 1.20.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Colton Linden|Colton Linden]]&amp;lt;br&amp;gt;Fishing Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cyan Linden|Cyan Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cyan Linden|Cyan Linden]]&amp;lt;br&amp;gt;Version 1.20&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Cyn Linden Bear.png|200px]]&lt;br /&gt;
|[[Image:Dakota Linden Bear.png|200px]]&lt;br /&gt;
|[[Image:Dan Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cyn Linden|Cyn Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Dakota Linden|Dakota Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Dan Linden|Dan Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Davy Linden Bear.png|200px]]&lt;br /&gt;
|[[Image:Dee_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Echo Linden bear945.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Davy Linden|Davy Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Dee Linden|Dee Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Echo Linden|Echo Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Enus Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Ethan_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Frontier Linden Plushie(Give Away).jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Enus Linden|Enus Linden]]&amp;lt;ref&amp;gt;The Enus Linden Bear is hidden on [http://slurl.com/secondlife/Longfellow/104/112/31 Enus&#039; plot] in [[Linden Village]].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Ethan Linden|Ethan Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Frontier Linden|Frontier Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Garry_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:George Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Goldin Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Garry Linden|Garry Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:George Linden|George Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Goldin Linden|Goldin Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Guy Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Harry_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[File:Infinity_Linden_Bear.png|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Guy Linden|Guy Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Harry Linden|Harry Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Infinity Linden|Infinity Linden]]&amp;lt;br&amp;gt;Infinibear&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Izzy Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Jeska_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Jeremy_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Izzy Linden|Izzy Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jeska Linden|Jeska Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jeremy Linden|Jeremy Linden]]&amp;lt;ref&amp;gt;The Jeremy Linden Bear is labeled as version 2.0 so an earlier version might be available as well.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jesse Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Jon_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Joppa_Linden_Bear_Frank.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jesse Linden|Jesse Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jon Linden|Jon Linden]]&amp;lt;ref&amp;gt;The Jon Linden Bear is called Jelly Linden and labeled as Version 1.0&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Joppa Linden|Joppa Linden]]&amp;lt;br&amp;gt;Frank&amp;lt;ref&amp;gt;Joppa Linden wants to build more than one Bear and destinguishes them via a rarity system, according to their copy permissions and availability. Frank can be obtained at the I-World HQ.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Joshua Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:JP_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Kate_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Joshua Linden|Joshua Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:JP Linden|JP Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kate Linden|Kate Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Katrin_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Kaylee_Linden.jpg|200px]]&lt;br /&gt;
|[[Image:Kimmora_Linden_Bear_VDay09.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Katrin Linden|Katrin Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kaylee Linden|Kaylee Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kimmora Linden|Kimmora Linden]]&amp;lt;br&amp;gt;VDay bear 09 &lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lexie Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Liana Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Lotte Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Lexie Linden|Lexie Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Liana Linden|Liana Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Lotte Linden|Lotte Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lynx_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:M_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Meggie Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Lynx Linden|Lynx Linden]]&amp;lt;br&amp;gt;Scottie Bear&amp;lt;ref&amp;gt;You can find Lynx Linden&#039;s Bear in the basement of [http://slurl.com/secondlife/Pooley/60/166/23 Char&#039;s Footsie Office], hiding from the hungry looking hippo that&#039;s circling the waters nearby.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:M Linden|M Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Maggie Linden|Maggie Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Mia Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Mia Linden Bear old.jpg|200px]]&lt;br /&gt;
|[[Image:Michon Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Mia Linden|Mia Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Mia Linden|Mia Linden]]&amp;lt;br&amp;gt;(old bear)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Michon Linden|Michon Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Meta Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Morpheus_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Pathfinder Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Meta Linden|Meta Linden]]&amp;lt;ref&amp;gt;The Meta Linden Bear can be won by solving a riddle at Meta&#039;s plot in Linden Village.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Morpheus Linden|Morpheus Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Pathfinder Linden|Pathfinder Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Patsy_Linden_Bear_20.jpg|200px]]&lt;br /&gt;
|[[Image:Periapse Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Phoebe_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Patsy Linden|Patsy Linden]] 2.0&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Periapse Linden|Periapse Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Phoebe Linden|Phoebe Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Prospero_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Rika_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Robin_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Prospero Linden|Prospero Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rika Linden|Rika Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Robin Linden|Robin Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rodney Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Rodney Linden Bear v2.11.jpg|200px]]&lt;br /&gt;
|[[Image:Rose_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rodney Linden|Rodney Linden]]&amp;lt;ref&amp;gt;The Rodney Linden Bear got a build in hug animation.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rodney Linden|Rodney Linden]]&amp;lt;br&amp;gt;version 2.11&amp;lt;ref&amp;gt;The Rodney Linden Bear v2.11 has - besides the hug animation which was already featured in the previous version - also a built-in multi-tool (ping, goto, stand, ...), as well as many hidden easter-eggs, which include dances and sounds!&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rose Linden|Rose Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rowan_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Scott Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Selene_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rowan Linden|Rowan Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Scott Linden|Scott Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Selene Linden|Selene Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Sidewinder Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Simon Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Simone Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Sidewinder Linden|Sidewinder Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Simon Linden|Simon Linden]]&amp;lt;ref&amp;gt;In order to get the Simon Linden Bear, you&#039;ll need to take part in a quest which starts at the SE corner of {{SLURL|Denby}} on top of his house.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Simone Linden|Simone Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Socrates_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Soft_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Spike Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Socrates Linden|Socrates Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Soft Linden|Soft Linden]]&amp;lt;ref&amp;gt;The Soft Linden bear is lost somewhere at [http://slurl.com/secondlife/Ihruree/128/128/2 Ihruree] and needs to be rescued!&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Spike Linden|Spike Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Sue Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Teagan_Linden_Bear_2008.jpg|200px]]&lt;br /&gt;
|[[Image:Teagan_Linden_Baby_Bear_2008.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Sue Linden|Sue Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;~2008~&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;Baby Bear ~2008~&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Teagan_Linden_Christmas_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Teagan_Linden_Christmas_Baby_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Teeple Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;Limited Edition Xmas Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;Limited Edition Xmas Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teeple Linden|Teeple Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tofu_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Trinity Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Torley_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Tofu Linden|Tofu Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Trinity Linden|Trinity Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Torley Linden|Torley Linden]]&amp;lt;ref&amp;gt;There are (at least) two slightly different Torley Linden Bear versions. One with the SL eye on hand logo (older) and one without (newer). He changed it after shooting [http://blog.secondlife.com/2008/06/07/who-are-lindens-video-tip-of-the-week-37/ this video tut].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Twilight_Linden_Bear_High.jpg|200px]]&lt;br /&gt;
|[[Image:Twillight Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Yoz_Linden%27s_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Twilight Linden|Twilight Linden]]&amp;lt;br&amp;gt;(high prim)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Twilight Linden|Twilight Linden]]&amp;lt;br&amp;gt;(low prim)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Yoz Linden|Yoz Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Whump_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Zero_Linden_Bear.jpg|200px]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Whump Linden|Whump Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Zero Linden|Zero Linden]]&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Lindens ohne Bären ==&lt;br /&gt;
&lt;br /&gt;
Diese Lindens haben keine Bären. Sie sind daher vermutlich unerträglich. &lt;br /&gt;
&lt;br /&gt;
*{{User2|Banzai Linden}}&lt;br /&gt;
*{{User2|Jaime Linden}}&lt;br /&gt;
*[[User:Noelle Linden|Noelle Linden]]&lt;br /&gt;
*{{User2|Danica Linden}}&lt;br /&gt;
*[[User:Ramzi Linden|Ramzi Linden]]&lt;br /&gt;
&lt;br /&gt;
== Special Bären ==&lt;br /&gt;
Während alle Linden Bären besonders sind, ist dieser Absatz für diejenigen, die es für spezielle Feiern gibt. Es sind auch für Linden Teams Bären dabei.&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Cupid Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Volunteers Day Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Volunteer Graduation Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cupid Linden|Cupid Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Volunteers Day Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Volunteer Graduation Bear&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Bunny_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Happy_4th_of_July_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Joy_to_Our_World_Linden_Holiday_Bear_2006.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Bunny Linden (Easter)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|4th of July Linden Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Joy to Our World&amp;lt;br&amp;gt;Holiday Bear 2006&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Mias_St_Patricks_Day_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Concierge_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:TrickOrTreat_Linden_Bear_2006.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Mia&#039;s St Patricks Day&amp;lt;br&amp;gt;Linden Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Concierge Team Bear&amp;lt;ref&amp;gt;The Concierge Team Bear can be obtained at the concierge HQ&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|TrickOrTreat Linden&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halloween_Linden_Bear_2006.jpg|200px]]&lt;br /&gt;
|[[Image:Halloween_Linden_Bear_2007.jpg|200px]]&lt;br /&gt;
|[[Image:Halloween_Linden_Bear_2008.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Halloween Linden Bear 2006&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Halloween Linden Bear 2007&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Halloween Linden Bear 2008&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Open_Grid_Public_Beta_Gridnaut_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:SL4B Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:SL5B Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[Gridnaut]] Bear&amp;lt;ref&amp;gt;Full name: &#039;&#039;Open Grid Public Beta Gridnaut Linden Bear&#039;&#039;. Was given away to everyone who took part in the [[Open Grid Public Beta]] and sent a picture of a grid teleport to the OGP mailing list.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[SL4B]] Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[SL5B]] Bear&amp;lt;ref&amp;gt;The SL5B Bear was created by [[User:Mia Linden|Mia Linden]] and there are two versions available. The normal version and the MEGA version.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Knowledge_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:1.25_commemorative_rolling-restart_bear.jpg|200px]]&lt;br /&gt;
|[[Image:Kate Linden Shamrock Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Knowledge Bear 1.0&amp;lt;ref&amp;gt;The Knowledge Bear gives links to the [[Knowledge Base]].&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;kbaotw&amp;quot;&amp;gt;This Bear was part of a scavenger hunt, related to [[KBAotW]]#31. Read more about it in the [http://blogs.secondlife.com/community/features/blog/2008/07/04/knowledge-base-article-of-the-week-31-world-navigation related blog post]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|1.25 commemorative rolling-restart bear&amp;lt;ref&amp;gt;The &#039;&#039;1.25 commemorative rolling-restart bear&#039;&#039; is made by [[User:Prospero Linden|Prospero Linden]] and was only available during the rolling restart of the [[Release_Notes/Second_Life_Server/1.25|1.25 server software]].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kate Linden|Kate Linden]]s&amp;lt;br&amp;gt;Shamrock Bear&amp;lt;ref&amp;gt;Kate hands out her shamrock bear on St. Patrick&#039;s day (March 17th) only! Send her an [[IM]] to obtain it.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Concierge_Linden_Bear_02.jpg|200px]]&lt;br /&gt;
|[[Image:GTeam_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:I-World_Team_Special_Edition_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Concierge Linden Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[GTeam]] Linden Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|I-World Team&amp;lt;br&amp;gt;Special Edition Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:VTeam_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:I-World Team Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Community_Translators_Linden_Bear.png|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[VTeam]] Linden Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|I-World Team Bear&amp;lt;ref&amp;gt;No longer in circulation. Made by [[User:Kate Linden|Kate Linden]]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Community Translators Linden Bear&amp;lt;ref&amp;gt;Made by [[User:Mia Linden]], hidden at {{SLURL|Eventopia}} on April 24th&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:SL6B Linden Bear.png|200px]]&lt;br /&gt;
|[[File:Edu Support Faire Linden Bear.png|200px]]&lt;br /&gt;
|[[File:Land Expo Linden Bear.png|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Bear for [[SL6B]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Edu Support Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Land Expo Bear&lt;br /&gt;
|-&lt;br /&gt;
|[[File:TNT Bear.jpg|200px]]&lt;br /&gt;
|[[File:Volunteer Appreciation Day Linden Bear 2009.png|200px]]&lt;br /&gt;
|[[File:AvaLine Hula Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|TNT Bear&amp;lt;ref&amp;gt;TNT is an [[acronym]] for &#039;&#039;Tips &#039;n Tricks&#039;&#039;. This special bear is given to those whose questions are featured in [[User:Kate Linden|Kate Linden]]&#039;s &amp;quot;[https://blogs.secondlife.com/community/community/tnt/blog/2009/07/16/ask-kate--tap-into-knowledge Ask Kate]&amp;quot; blogposts as part of the [https://blogs.secondlife.com/community/community/tnt TNT Blog], as well as to those who write comments to these entries. The bear is scripted and gives a tip on how to alt-zoom, when it is touched.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Volunteer Appreciation Bear 2009&lt;br /&gt;
|[http://secondlife.com/avaline Avaline] Hula Bear&amp;lt;ref&amp;gt;The AvaLine Hula Bear is limited to 500 copies and given to the first 500 subscribers to [http://secondlife.com/avaline Avaline] (originally announced [http://blogs.secondlife.com/community/features/blog/2009/08/19/bye-bye-beta-avaline-dial-an-avatar-is-now-available-to-all-avatars here)].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Footnotes ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Linden_B%C3%A4ren&amp;diff=491153</id>
		<title>Linden Bären</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Linden_B%C3%A4ren&amp;diff=491153"/>
		<updated>2009-09-15T21:52:34Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: Created page with &amp;#039;{{Help/de|Parent=Linden Bear|Viewer=*|Glossary=*}} Vorlage Linden BärViele Lindens der Vergangenheit und Gegenwart haben ihre eigene ...&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Linden Bear|Viewer=*|Glossary=*}}&lt;br /&gt;
[[Image:Linden Bear.jpg|right|thumb|200px|Vorlage Linden Bär]]Viele Lindens der Vergangenheit und Gegenwart haben ihre eigene persönliche und einzigartigen Bären erschaffen um sie mit den Bewohnern zu teilen wenn sie fragen. Die meisten dieser Linden Bären sind Änderungen vom Original Linden Bär von [[User: Nicole Linden | Linden Nicole]], das auf der rechten Seite zu sehen ist. Dieser Artikel listet eine unvollständige Liste dieser Linden Bären.&lt;br /&gt;
&lt;br /&gt;
__TOC__&lt;br /&gt;
&amp;lt;br clear=&amp;quot;all&amp;quot;/&amp;gt;&lt;br /&gt;
== Linden Bären ==&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Amber Linden Bear.jpg|200px]]&lt;br /&gt;
|[[File:Amber Linden Bear 2008.png|200px]]&lt;br /&gt;
|[[Image:Alexa_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Amber Linden|Amber Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Amber Linden|Amber Linden]]&amp;lt;br&amp;gt;2008&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Alexa Linden|Alexa Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Alexa_Linden_Bear_2.jpg|200px]]&lt;br /&gt;
|[[Image:Aric_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Benjamin-Linden-Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Aric Linden|Aric Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Benjamin Linden|Benjamin Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:BigPapi Linden|BigPapi Linden]]&amp;lt;ref&amp;gt;Den BigPapi Linden Bär ist ironischerweise sehr klein (^_^)&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:BigPapi_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Blondin Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Blue Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Alexa Linden|Alexa Linden]]&amp;lt;br&amp;gt;2008&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Blondin Linden|Blondin Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Blue Linden|Blue Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Blue Linden Bear 1.20.jpg|200px]]&lt;br /&gt;
|[[Image:Brent Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Brent Linden Bear V.2!.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Blue Linden|Blue Linden]]&amp;lt;br&amp;gt;Version 1.20&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Brent Linden|Brent Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Brent Linden|Brent Linden]]&amp;lt;br /&amp;gt;(v.2)&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Catherine_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Calyle_Linden_Bear.png|200px]]&lt;br /&gt;
|[[Image:CG Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Catherine Linden|Catherine Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Calyle Linden|Calyle Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:CG Linden|CG Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Coco_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Cogsworth_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Colton_Linden_Puppet_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Coco Linden|Coco Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cogsworth Linden|Cogsworth Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Colton Linden|Colton Linden]]&amp;lt;br&amp;gt;Puppet Bear&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Colton Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Cyan_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Cyan Linden Bear 1.20.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Colton Linden|Colton Linden]]&amp;lt;br&amp;gt;Fishing Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cyan Linden|Cyan Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cyan Linden|Cyan Linden]]&amp;lt;br&amp;gt;Version 1.20&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Cyn Linden Bear.png|200px]]&lt;br /&gt;
|[[Image:Dakota Linden Bear.png|200px]]&lt;br /&gt;
|[[Image:Dan Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cyn Linden|Cyn Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Dakota Linden|Dakota Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Dan Linden|Dan Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[File:Davy Linden Bear.png|200px]]&lt;br /&gt;
|[[Image:Dee_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Echo Linden bear945.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Davy Linden|Davy Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Dee Linden|Dee Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Echo Linden|Echo Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Enus Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Ethan_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Frontier Linden Plushie(Give Away).jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Enus Linden|Enus Linden]]&amp;lt;ref&amp;gt;The Enus Linden Bear is hidden on [http://slurl.com/secondlife/Longfellow/104/112/31 Enus&#039; plot] in [[Linden Village]].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Ethan Linden|Ethan Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Frontier Linden|Frontier Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Garry_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:George Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Goldin Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Garry Linden|Garry Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:George Linden|George Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Goldin Linden|Goldin Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Guy Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Harry_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[File:Infinity_Linden_Bear.png|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Guy Linden|Guy Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Harry Linden|Harry Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Infinity Linden|Infinity Linden]]&amp;lt;br&amp;gt;Infinibear&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Izzy Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Jeska_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Jeremy_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Izzy Linden|Izzy Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jeska Linden|Jeska Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jeremy Linden|Jeremy Linden]]&amp;lt;ref&amp;gt;The Jeremy Linden Bear is labeled as version 2.0 so an earlier version might be available as well.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Jesse Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Jon_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Joppa_Linden_Bear_Frank.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jesse Linden|Jesse Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Jon Linden|Jon Linden]]&amp;lt;ref&amp;gt;The Jon Linden Bear is called Jelly Linden and labeled as Version 1.0&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Joppa Linden|Joppa Linden]]&amp;lt;br&amp;gt;Frank&amp;lt;ref&amp;gt;Joppa Linden wants to build more than one Bear and destinguishes them via a rarity system, according to their copy permissions and availability. Frank can be obtained at the I-World HQ.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Joshua Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:JP_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Kate_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Joshua Linden|Joshua Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:JP Linden|JP Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kate Linden|Kate Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Katrin_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Kaylee_Linden.jpg|200px]]&lt;br /&gt;
|[[Image:Kimmora_Linden_Bear_VDay09.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Katrin Linden|Katrin Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kaylee Linden|Kaylee Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kimmora Linden|Kimmora Linden]]&amp;lt;br&amp;gt;VDay bear 09 &lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lexie Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Liana Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Lotte Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Lexie Linden|Lexie Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Liana Linden|Liana Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Lotte Linden|Lotte Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Lynx_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:M_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Meggie Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Lynx Linden|Lynx Linden]]&amp;lt;br&amp;gt;Scottie Bear&amp;lt;ref&amp;gt;You can find Lynx Linden&#039;s Bear in the basement of [http://slurl.com/secondlife/Pooley/60/166/23 Char&#039;s Footsie Office], hiding from the hungry looking hippo that&#039;s circling the waters nearby.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:M Linden|M Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Maggie Linden|Maggie Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Mia Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Mia Linden Bear old.jpg|200px]]&lt;br /&gt;
|[[Image:Michon Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Mia Linden|Mia Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Mia Linden|Mia Linden]]&amp;lt;br&amp;gt;(old bear)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Michon Linden|Michon Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Meta Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Morpheus_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Pathfinder Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Meta Linden|Meta Linden]]&amp;lt;ref&amp;gt;The Meta Linden Bear can be won by solving a riddle at Meta&#039;s plot in Linden Village.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Morpheus Linden|Morpheus Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Pathfinder Linden|Pathfinder Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Patsy_Linden_Bear_20.jpg|200px]]&lt;br /&gt;
|[[Image:Periapse Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Phoebe_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Patsy Linden|Patsy Linden]] 2.0&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Periapse Linden|Periapse Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Phoebe Linden|Phoebe Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Prospero_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Rika_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Robin_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Prospero Linden|Prospero Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rika Linden|Rika Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Robin Linden|Robin Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rodney Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Rodney Linden Bear v2.11.jpg|200px]]&lt;br /&gt;
|[[Image:Rose_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rodney Linden|Rodney Linden]]&amp;lt;ref&amp;gt;The Rodney Linden Bear got a build in hug animation.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rodney Linden|Rodney Linden]]&amp;lt;br&amp;gt;version 2.11&amp;lt;ref&amp;gt;The Rodney Linden Bear v2.11 has - besides the hug animation which was already featured in the previous version - also a built-in multi-tool (ping, goto, stand, ...), as well as many hidden easter-eggs, which include dances and sounds!&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rose Linden|Rose Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Rowan_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Scott Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Selene_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Rowan Linden|Rowan Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Scott Linden|Scott Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Selene Linden|Selene Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Sidewinder Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Simon Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Simone Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Sidewinder Linden|Sidewinder Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Simon Linden|Simon Linden]]&amp;lt;ref&amp;gt;In order to get the Simon Linden Bear, you&#039;ll need to take part in a quest which starts at the SE corner of {{SLURL|Denby}} on top of his house.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Simone Linden|Simone Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Socrates_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Soft_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Spike Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Socrates Linden|Socrates Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Soft Linden|Soft Linden]]&amp;lt;ref&amp;gt;The Soft Linden bear is lost somewhere at [http://slurl.com/secondlife/Ihruree/128/128/2 Ihruree] and needs to be rescued!&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Spike Linden|Spike Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Sue Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Teagan_Linden_Bear_2008.jpg|200px]]&lt;br /&gt;
|[[Image:Teagan_Linden_Baby_Bear_2008.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Sue Linden|Sue Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;~2008~&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;Baby Bear ~2008~&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Teagan_Linden_Christmas_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Teagan_Linden_Christmas_Baby_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Teeple Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;Limited Edition Xmas Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teagan Linden|Teagan Linden]]&amp;lt;br&amp;gt;Limited Edition Xmas Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Teeple Linden|Teeple Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Tofu_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Trinity Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Torley_Linden_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Tofu Linden|Tofu Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Trinity Linden|Trinity Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Torley Linden|Torley Linden]]&amp;lt;ref&amp;gt;There are (at least) two slightly different Torley Linden Bear versions. One with the SL eye on hand logo (older) and one without (newer). He changed it after shooting [http://blog.secondlife.com/2008/06/07/who-are-lindens-video-tip-of-the-week-37/ this video tut].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Twilight_Linden_Bear_High.jpg|200px]]&lt;br /&gt;
|[[Image:Twillight Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Yoz_Linden%27s_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Twilight Linden|Twilight Linden]]&amp;lt;br&amp;gt;(high prim)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Twilight Linden|Twilight Linden]]&amp;lt;br&amp;gt;(low prim)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Yoz Linden|Yoz Linden]]&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Whump_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Zero_Linden_Bear.jpg|200px]]&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Whump Linden|Whump Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Zero Linden|Zero Linden]]&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Lindens ohne Bären ==&lt;br /&gt;
&lt;br /&gt;
Diese Lindens haben keine Bären. Sie sind daher vermutlich unerträglich. &lt;br /&gt;
&lt;br /&gt;
*{{User2|Banzai Linden}}&lt;br /&gt;
*{{User2|Jaime Linden}}&lt;br /&gt;
*[[User:Noelle Linden|Noelle Linden]]&lt;br /&gt;
*{{User2|Danica Linden}}&lt;br /&gt;
*[[User:Ramzi Linden|Ramzi Linden]]&lt;br /&gt;
&lt;br /&gt;
== Special Bären ==&lt;br /&gt;
Während alle Linden Bären besonders sind, ist dieser Absatz für diejenigen, die es für spezielle Feiern gibt. Es sind auch für Linden Teams Bären dabei.&lt;br /&gt;
&amp;lt;div align=&amp;quot;center&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|[[Image:Cupid Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Volunteers Day Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Volunteer Graduation Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Cupid Linden|Cupid Linden]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Volunteers Day Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Volunteer Graduation Bear&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Bunny_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Happy_4th_of_July_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Joy_to_Our_World_Linden_Holiday_Bear_2006.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Bunny Linden (Easter)&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|4th of July Linden Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Joy to Our World&amp;lt;br&amp;gt;Holiday Bear 2006&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Mias_St_Patricks_Day_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Concierge_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:TrickOrTreat_Linden_Bear_2006.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Mia&#039;s St Patricks Day&amp;lt;br&amp;gt;Linden Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Concierge Team Bear&amp;lt;ref&amp;gt;The Concierge Team Bear can be obtained at the concierge HQ&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|TrickOrTreat Linden&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Halloween_Linden_Bear_2006.jpg|200px]]&lt;br /&gt;
|[[Image:Halloween_Linden_Bear_2007.jpg|200px]]&lt;br /&gt;
|[[Image:Halloween_Linden_Bear_2008.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Halloween Linden Bear 2006&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Halloween Linden Bear 2007&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Halloween Linden Bear 2008&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Open_Grid_Public_Beta_Gridnaut_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:SL4B Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:SL5B Linden Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[Gridnaut]] Bear&amp;lt;ref&amp;gt;Full name: &#039;&#039;Open Grid Public Beta Gridnaut Linden Bear&#039;&#039;. Was given away to everyone who took part in the [[Open Grid Public Beta]] and sent a picture of a grid teleport to the OGP mailing list.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[SL4B]] Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[SL5B]] Bear&amp;lt;ref&amp;gt;The SL5B Bear was created by [[User:Mia Linden|Mia Linden]] and there are two versions available. The normal version and the MEGA version.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Knowledge_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:1.25_commemorative_rolling-restart_bear.jpg|200px]]&lt;br /&gt;
|[[Image:Kate Linden Shamrock Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Knowledge Bear 1.0&amp;lt;ref&amp;gt;The Knowledge Bear gives links to the [[Knowledge Base]].&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;kbaotw&amp;quot;&amp;gt;This Bear was part of a scavenger hunt, related to [[KBAotW]]#31. Read more about it in the [http://blogs.secondlife.com/community/features/blog/2008/07/04/knowledge-base-article-of-the-week-31-world-navigation related blog post]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|1.25 commemorative rolling-restart bear&amp;lt;ref&amp;gt;The &#039;&#039;1.25 commemorative rolling-restart bear&#039;&#039; is made by [[User:Prospero Linden|Prospero Linden]] and was only available during the rolling restart of the [[Release_Notes/Second_Life_Server/1.25|1.25 server software]].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[User:Kate Linden|Kate Linden]]s&amp;lt;br&amp;gt;Shamrock Bear&amp;lt;ref&amp;gt;Kate hands out her shamrock bear on St. Patrick&#039;s day (March 17th) only! Send her an [[IM]] to obtain it.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:Concierge_Linden_Bear_02.jpg|200px]]&lt;br /&gt;
|[[Image:GTeam_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:I-World_Team_Special_Edition_Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Concierge Linden Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[GTeam]] Linden Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|I-World Team&amp;lt;br&amp;gt;Special Edition Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[Image:VTeam_Linden_Bear.jpg|200px]]&lt;br /&gt;
|[[Image:I-World Team Linden Bear.jpg|200px]]&lt;br /&gt;
|[[Image:Community_Translators_Linden_Bear.png|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|[[VTeam]] Linden Bear&amp;lt;ref name=&amp;quot;kbaotw&amp;quot; /&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|I-World Team Bear&amp;lt;ref&amp;gt;No longer in circulation. Made by [[User:Kate Linden|Kate Linden]]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Community Translators Linden Bear&amp;lt;ref&amp;gt;Made by [[User:Mia Linden]], hidden at {{SLURL|Eventopia}} on April 24th&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|[[File:SL6B Linden Bear.png|200px]]&lt;br /&gt;
|[[File:Edu Support Faire Linden Bear.png|200px]]&lt;br /&gt;
|[[File:Land Expo Linden Bear.png|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Bear for [[SL6B]]&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Edu Support Bear&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Land Expo Bear&lt;br /&gt;
|-&lt;br /&gt;
|[[File:TNT Bear.jpg|200px]]&lt;br /&gt;
|[[File:Volunteer Appreciation Day Linden Bear 2009.png|200px]]&lt;br /&gt;
|[[File:AvaLine Hula Bear.jpg|200px]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|TNT Bear&amp;lt;ref&amp;gt;TNT is an [[acronym]] for &#039;&#039;Tips &#039;n Tricks&#039;&#039;. This special bear is given to those whose questions are featured in [[User:Kate Linden|Kate Linden]]&#039;s &amp;quot;[https://blogs.secondlife.com/community/community/tnt/blog/2009/07/16/ask-kate--tap-into-knowledge Ask Kate]&amp;quot; blogposts as part of the [https://blogs.secondlife.com/community/community/tnt TNT Blog], as well as to those who write comments to these entries. The bear is scripted and gives a tip on how to alt-zoom, when it is touched.&amp;lt;/ref&amp;gt;&lt;br /&gt;
|style=&amp;quot;text-align:center;&amp;quot;|Volunteer Appreciation Bear 2009&lt;br /&gt;
|[http://secondlife.com/avaline Avaline] Hula Bear&amp;lt;ref&amp;gt;The AvaLine Hula Bear is limited to 500 copies and given to the first 500 subscribers to [http://secondlife.com/avaline Avaline] (originally announced [http://blogs.secondlife.com/community/features/blog/2009/08/19/bye-bye-beta-avaline-dial-an-avatar-is-now-available-to-all-avatars here)].&amp;lt;/ref&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Footnotes ==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Advanced_menu/1.23/de&amp;diff=435402</id>
		<title>Advanced menu/1.23/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Advanced_menu/1.23/de&amp;diff=435402"/>
		<updated>2009-07-21T13:15:07Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Advanced menu/de to Advanced Menü:&amp;amp;#32;translate&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Advanced Menü]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Advanced_Men%C3%BC&amp;diff=435392</id>
		<title>Advanced Menü</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Advanced_Men%C3%BC&amp;diff=435392"/>
		<updated>2009-07-21T13:15:07Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Advanced menu/de to Advanced Menü:&amp;amp;#32;translate&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Advanced menu|Viewer=*|Glossary=*}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|---&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
Standardmäßig ist die Second Life Viewer&#039;s Menü &amp;quot;Advanced&amp;quot; nicht sichtbar. So zeigen sie es an:&lt;br /&gt;
* &#039;&#039;&#039;PC&#039;&#039;&#039; - {{KeyCombo|ctrl=*|alt=*|D}}&lt;br /&gt;
* &#039;&#039;&#039;Mac&#039;&#039;&#039; - {{KeyCombo|ctrl=*|opt=*|D}}&lt;br /&gt;
&lt;br /&gt;
Bei einigen Systemen ist die Kombination mit einer anderen Anwendung Verknüpft deshalb müssen Sie {{KeyCombo|ctrl=*|alt=*|shift=*|D}} drücken.&lt;br /&gt;
&lt;br /&gt;
Schau das Video an um zu sehen wie es gemacht wird und hier [http://support.secondlife.com/ics/support/default.asp?deptID=4417&amp;amp;task=knowledge&amp;amp;questionID=4338 &amp;lt;span title=&amp;quot;Wie öffne ich das Advanced Menü? (Formerly known as the Client menu.)&amp;quot;&amp;gt;Erfahren Sie mehr in unserer Knowledge Base&amp;lt;/span&amp;gt;]:&lt;br /&gt;
&lt;br /&gt;
Hier finden Sie Informationen zu den einzelnen Optionen in der [[:Category:Advanced menu]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| &amp;lt;videoflash&amp;gt;IrndvDk-pzY&amp;lt;/videoflash&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Advanced menu]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Advanced_Men%C3%BC&amp;diff=435382</id>
		<title>Advanced Menü</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Advanced_Men%C3%BC&amp;diff=435382"/>
		<updated>2009-07-21T13:14:28Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: translate&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Advanced menu|Viewer=*|Glossary=*}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|---&lt;br /&gt;
|valign=&amp;quot;top&amp;quot;|&lt;br /&gt;
Standardmäßig ist die Second Life Viewer&#039;s Menü &amp;quot;Advanced&amp;quot; nicht sichtbar. So zeigen sie es an:&lt;br /&gt;
* &#039;&#039;&#039;PC&#039;&#039;&#039; - {{KeyCombo|ctrl=*|alt=*|D}}&lt;br /&gt;
* &#039;&#039;&#039;Mac&#039;&#039;&#039; - {{KeyCombo|ctrl=*|opt=*|D}}&lt;br /&gt;
&lt;br /&gt;
Bei einigen Systemen ist die Kombination mit einer anderen Anwendung Verknüpft deshalb müssen Sie {{KeyCombo|ctrl=*|alt=*|shift=*|D}} drücken.&lt;br /&gt;
&lt;br /&gt;
Schau das Video an um zu sehen wie es gemacht wird und hier [http://support.secondlife.com/ics/support/default.asp?deptID=4417&amp;amp;task=knowledge&amp;amp;questionID=4338 &amp;lt;span title=&amp;quot;Wie öffne ich das Advanced Menü? (Formerly known as the Client menu.)&amp;quot;&amp;gt;Erfahren Sie mehr in unserer Knowledge Base&amp;lt;/span&amp;gt;]:&lt;br /&gt;
&lt;br /&gt;
Hier finden Sie Informationen zu den einzelnen Optionen in der [[:Category:Advanced menu]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| &amp;lt;videoflash&amp;gt;IrndvDk-pzY&amp;lt;/videoflash&amp;gt;&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Advanced menu]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=How_to_hide_the_User_Interface/de&amp;diff=435352</id>
		<title>How to hide the User Interface/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=How_to_hide_the_User_Interface/de&amp;diff=435352"/>
		<updated>2009-07-21T12:54:46Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: wurde übersetzt&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=How to hide the User Interface|Viewer=*}}&lt;br /&gt;
Um das gesamte User Interface (UI) verschwinden zu lassen, können Sie entweder ein Kurzbefehl oder durch die [[erweiterte Navigation]]&lt;br /&gt;
&lt;br /&gt;
Drücke {{KeyCombo|ctrl=*|alt=*|shift=*|D}} um das &#039;&#039;Advanced&#039;&#039; Menü aufzurufen.&lt;br /&gt;
&lt;br /&gt;
Dann gehe zu &#039;Rendering&#039;, mache den Hacken bei &#039;Show UI&#039; raus. Das macht das ganze UI unsichtbar. Um das UI wieder sichtbar zu machen drücke diesen Kurzbefehl: {{KeyCombo|ctrl=*|alt=*|F1}}.&lt;br /&gt;
&lt;br /&gt;
Mit {{KeyCombo|ctrl=*|alt=*|F1}} kannst du auch das UI verschwinden lassen.&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435342</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435342"/>
		<updated>2009-07-21T10:56:14Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: /* Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Login screen|Viewer=*}}Der &#039;&#039;&#039;Anmeldebildschirm&#039;&#039;&#039; (auch bekannt als Login-Bildschirm oder &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], und die ästhetische Gurus von Linden Lab Creative Services-Team machen die Bilder.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Größe 1280x960 JPGs. Das macht sie offensichtlich unerwünscht gestreckt auf Widescreens (zB 16:10), aber es ist, was wir jetzt haben.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In der Zwischenzeit ist aber viel passiert, [http://www.flickr.com/photos/torley/sets/72157605740036376/ schau dir Torley&#039;s Flickr Fotos an] für &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, wo jedes Bild ein &amp;quot;Visit...&amp;quot; Link hat. Wenn du drauf klickst wirst du dort hinteleportiert.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435332</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435332"/>
		<updated>2009-07-21T10:54:35Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Login screen|Viewer=*}}Der &#039;&#039;&#039;Anmeldebildschirm&#039;&#039;&#039; (auch bekannt als Login-Bildschirm oder &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], und die ästhetische Gurus von Linden Lab Creative Services-Team machen die Bilder.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Größe 1280x960 JPGs. Das macht sie offensichtlich unerwünscht gestreckt auf Widescreens (zB 16:10), aber es ist, was wir jetzt haben.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In der Zwischenzeit im Zusammenhang mit Intrigen, [http://www.flickr.com/photos/torley/sets/72157605740036376/ schau dir Torley&#039;s Flickr Fotos an]für &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, wo du auch bei jedem Bild ein &amp;quot;Visit...&amp;quot; Link hat. Wenn du drauf klickst wirst du dort hinteleportiert. &lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435322</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435322"/>
		<updated>2009-07-21T10:47:20Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: /* In welchem Format sind die Bilder? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Login screen|Viewer=*}}Der &#039;&#039;&#039;Anmeldebildschirm&#039;&#039;&#039; (auch bekannt als Login-Bildschirm oder &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], und die ästhetische Gurus von Linden Lab Creative Services-Team machen die Bilder.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Größe 1280x960 JPGs. Das macht sie offensichtlich unerwünscht gestreckt auf Widescreens (zB 16:10), aber es ist, was wir jetzt haben.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435312</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435312"/>
		<updated>2009-07-21T10:44:41Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: /* Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Help/de|Parent=Login screen|Viewer=*}}Der &#039;&#039;&#039;Anmeldebildschirm&#039;&#039;&#039; (auch bekannt als Login-Bildschirm oder &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], und die ästhetische Gurus von Linden Lab Creative Services-Team machen die Bilder.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Hilfe/Viewer/Login_screen/de&amp;diff=435202</id>
		<title>Hilfe/Viewer/Login screen/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Hilfe/Viewer/Login_screen/de&amp;diff=435202"/>
		<updated>2009-07-21T09:54:46Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (auch bekannt als &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Hilfe/Viewer/Login_screen/de&amp;diff=435192</id>
		<title>Hilfe/Viewer/Login screen/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Hilfe/Viewer/Login_screen/de&amp;diff=435192"/>
		<updated>2009-07-21T09:51:05Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Hilfe/Viewer/Login screen/de to Hilfsportal/Hilfe/Viewer/Login screen/de&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Hilfsportal/Hilfe/Viewer/Login screen/de]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435182</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435182"/>
		<updated>2009-07-21T09:51:05Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Hilfe/Viewer/Login screen/de to Hilfsportal/Hilfe/Viewer/Login screen/de&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (auch bekannt als &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Viewer/Login_screen/de&amp;diff=435172</id>
		<title>Viewer/Login screen/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Viewer/Login_screen/de&amp;diff=435172"/>
		<updated>2009-07-21T09:48:41Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Viewer/Login screen/de to Login screen/de over redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Login screen/de]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Login_screen/de&amp;diff=435162</id>
		<title>Login screen/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Login_screen/de&amp;diff=435162"/>
		<updated>2009-07-21T09:48:41Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Viewer/Login screen/de to Login screen/de over redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Hilfe/Viewer/Login screen/de]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Login_screen/de&amp;diff=435152</id>
		<title>Login screen/de</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Login_screen/de&amp;diff=435152"/>
		<updated>2009-07-21T09:47:14Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Viewer/Login screen/de to Hilfe/Viewer/Login screen/de&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Hilfe/Viewer/Login screen/de]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435142</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435142"/>
		<updated>2009-07-21T09:47:14Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Viewer/Login screen/de to Hilfe/Viewer/Login screen/de&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (auch bekannt als &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435122</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435122"/>
		<updated>2009-07-21T09:43:42Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: moved Login screen/de to Viewer/Login screen/de:&amp;amp;#32;Passt besser da rein!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (auch bekannt als &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435112</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435112"/>
		<updated>2009-07-21T09:39:59Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (auch bekannt als &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Jetzt hier einige Fragen und Antworten über Fragen, die immer wieder auftauchen! Dies ist &#039;&#039;keine&#039;&#039; Politik, nur Casual Infos, die Ihnen helfen soll das zu verstehen:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435102</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435102"/>
		<updated>2009-07-21T09:37:43Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (auch bekannt als &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen Splash-Screen]&amp;quot;) ist treffend benannt, weil es der Punkt ist, mit dem man sich in Second Life anmelden und erkunden kann. Die Inhalte haben sich im Laufe der Zeit geändert, aber es kann (minus dem aktuellem Anmelde-Bildschirm) auf dieser Seite angeschaut werden http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Now here&#039;s some Q&amp;amp;A about stuff that keeps coming up! This is &#039;&#039;not&#039;&#039; policy, just casual info to help you understand:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435092</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435092"/>
		<updated>2009-07-21T09:33:24Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: /* Why don&amp;#039;t you just combine the login screen with the Showcase? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (aka &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen splash screen]&amp;quot;) is aptly named, because it&#039;s the point from which you enter the Second Life experience. Its contents have changed over time, but it (minus the actual login form) can currently be viewed at http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Now here&#039;s some Q&amp;amp;A about stuff that keeps coming up! This is &#039;&#039;not&#039;&#039; policy, just casual info to help you understand:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Warum kombiniert Ihr nicht einfach den Login-Buildschirm mit dem Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435082</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435082"/>
		<updated>2009-07-21T09:28:38Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: /* Kann ich meine eigene Bilder eintragen lassen?*/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (aka &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen splash screen]&amp;quot;) is aptly named, because it&#039;s the point from which you enter the Second Life experience. Its contents have changed over time, but it (minus the actual login form) can currently be viewed at http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Now here&#039;s some Q&amp;amp;A about stuff that keeps coming up! This is &#039;&#039;not&#039;&#039; policy, just casual info to help you understand:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Kann ich meine eigene Bilder eintragen lassen?==&lt;br /&gt;
Wo das geschrieben wurde noch nicht. Du bist aber mehr als willkommen um auf der [http://secondlife.com/showcase Second Life Showcase Seite] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Why don&#039;t you just combine the login screen with the Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435072</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435072"/>
		<updated>2009-07-21T09:21:22Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help/de|Parent-Login screen}}Der &#039;&#039;&#039;Login-Bildschirm&#039;&#039;&#039; (aka &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen splash screen]&amp;quot;) is aptly named, because it&#039;s the point from which you enter the Second Life experience. Its contents have changed over time, but it (minus the actual login form) can currently be viewed at http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Now here&#039;s some Q&amp;amp;A about stuff that keeps coming up! This is &#039;&#039;not&#039;&#039; policy, just casual info to help you understand:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
In der Regel 16 oder so, die sich saisonal verändern (oder dort, das ist noch ziemlich neu).&lt;br /&gt;
&lt;br /&gt;
Jedes Mal, wenn der Tag (von denen es 4) ist mit 4 oder mehr Screenshots belegt, und sie ändern sich. Das neustart von SL oder bei längerer Zeit wird ein neues Bild gezeigt.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Einschließlich solcher, die nicht angezeigt werden:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Einige werden sich an diese Bilder erinnern &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Wie kann ich den Ort besuchen, wo diese Bilder entstanden sind? ==&lt;br /&gt;
Als dieser Artikel geschrieben wurde (06.04.2009), gab es keine [[SLURLs]] auf dem Login-Bildschirm. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Can I submit my own pictures? ==&lt;br /&gt;
Not as of this writing. You&#039;re more than welcome to make submissions to the [http://secondlife.com/showcase Second Life Showcase] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Why don&#039;t you just combine the login screen with the Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435042</id>
		<title>Anmeldebildschirm</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=Anmeldebildschirm&amp;diff=435042"/>
		<updated>2009-07-21T09:09:05Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: Muss noch weiter übersetzt werden&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{multi-lang|1=Login screen|2=/de}}&lt;br /&gt;
&lt;br /&gt;
{{Help|Viewer=*}}The &#039;&#039;&#039;login screen&#039;&#039;&#039; (aka &amp;quot;[http://en.wikipedia.org/wiki/Splash_screen splash screen]&amp;quot;) is aptly named, because it&#039;s the point from which you enter the Second Life experience. Its contents have changed over time, but it (minus the actual login form) can currently be viewed at http://secondlife.com/app/login&lt;br /&gt;
&lt;br /&gt;
[[Image:Login-screen.png|640px]]&lt;br /&gt;
&lt;br /&gt;
Now here&#039;s some Q&amp;amp;A about stuff that keeps coming up! This is &#039;&#039;not&#039;&#039; policy, just casual info to help you understand:&lt;br /&gt;
&lt;br /&gt;
== Wer macht die Bilder, die auf dem Login-Bildschirm zu sehen sind? ==&lt;br /&gt;
Meistens [[Torley]], and the aesthetic gurus of Linden Lab&#039;s Creative Services Team have the final cut.&lt;br /&gt;
&lt;br /&gt;
== In welchem Format sind die Bilder? ==&lt;br /&gt;
Cropped 1280x960 JPGs. This makes them appear undesirably stretched on widescreen (like 16:10), but it&#039;s what we have for now.&lt;br /&gt;
&lt;br /&gt;
== Wie viele Bilder gibt es? ==&lt;br /&gt;
Usually 16 or so, which get swapped seasonally (or thereabouts, this is still fairly new).&lt;br /&gt;
&lt;br /&gt;
Each time of day (of which there are 4) has 4 or more screenshots, and they rotate. Restarting SL or refreshing enough times will show you a new one.&lt;br /&gt;
&lt;br /&gt;
== Wo kann ich die ganzen Bilder anschauen? ==&lt;br /&gt;
Including ones that didn&#039;t make the cut:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/groups/secondlifeloginscreen_/ Second Life Login Screen Flickr group]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157616222566082/ Spring 2009]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157613020974161/ Winter 2008]&#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;[http://www.flickr.com/photos/torley/sets/72157606580886911/ Summer 2008]&#039;&#039;&#039;&lt;br /&gt;
* Some of you may remember the &#039;&#039;&#039;[http://www.flickr.com/photos/torley/512463672/ WindLight preview splash]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== How can I visit where these pictures were taken? ==&lt;br /&gt;
As of this writing (2009-04-06), there aren&#039;t [[SLURLs]] on the login screen. [http://torley.com/why-i-dont-consistently-post-slurls-with-hi-res-snapshots Torley explains related usability trickiness.]&lt;br /&gt;
&lt;br /&gt;
In the meantime with related intrigue, [http://www.flickr.com/photos/torley/sets/72157605740036376/ look at Torley&#039;s Flickr stream] for &#039;&#039;OMG AWESOME ADVENTURES&#039;&#039;, where just about every pic has a &amp;quot;Visit...&amp;quot; link you can click on to teleport to... and keep reading.&lt;br /&gt;
&lt;br /&gt;
== Aren&#039;t you concerned about attribution? ==&lt;br /&gt;
Heck yes. You&#039;ll notice on [http://www.flickr.com/photos/torley/sets/72157605740036376/ Torley&#039;s Flickr stream] that he/she/it endeavors to attribute as much as possible in the absence of an auto-attribution mechanism. If you&#039;re ready to geek out, he even came up with [http://torley.com/make-a-macro-to-save-keystrokes-sending-sl-postcards this macro] to automate including parcel name + description.&lt;br /&gt;
&lt;br /&gt;
In the future, we&#039;ll hopefully have better ways — after all, it&#039;s a win for everyone to discover awesomeness in Second Life.&lt;br /&gt;
&lt;br /&gt;
== Can I submit my own pictures? ==&lt;br /&gt;
Not as of this writing. You&#039;re more than welcome to make submissions to the [http://secondlife.com/showcase Second Life Showcase] which appears prominently on our website and within the viewer&#039;s Search window in the Showcase tab. [http://secondlife.com/showcase/faq.php Showcase has a FAQ], too.&lt;br /&gt;
&lt;br /&gt;
== Why don&#039;t you just combine the login screen with the Showcase? ==&lt;br /&gt;
&#039;&#039;Great Minds Think Alike!&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Various people have brought this up independently. We&#039;re considering ideas on this front. That&#039;s not a commitment to implement, but yes, we&#039;re aware. Enthusiasm rules, excessive overhead sucks — certain stuff like legal issues, a low-maintenance queue, and soforth need to be figured out.&lt;br /&gt;
&lt;br /&gt;
== So where else can I show off my pictures? ==&lt;br /&gt;
Many places. (Add yours!) There are several [[Resident]]-run snapshot sites; [http://torley.com/show-off-your-newest-second-life-postcards-automagically Torley notes some here].&lt;br /&gt;
&lt;br /&gt;
Furthermore, the Second Life Blogs link to the [http://www.flickr.com/groups/secondlife/ biggest Second Life Flickr group], which is run by Residents. Also [[List_of_Second_Life_Groups_on_Flickr.com|this list of all Second Life Flickr groups]].&lt;br /&gt;
&lt;br /&gt;
You can let Blue Linden know, he runs [http://blogs.secondlife.com/community/community/eureka EUREKA, The SL Travel Blog].&lt;br /&gt;
&lt;br /&gt;
And Torley might fancy seeing your pix, [[User:Torley_Linden/Contact|contact him directly]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Culture]]&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=User:Albrecht_Boucher&amp;diff=61366</id>
		<title>User:Albrecht Boucher</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=User:Albrecht_Boucher&amp;diff=61366"/>
		<updated>2008-04-04T20:15:18Z</updated>

		<summary type="html">&lt;p&gt;Albrecht Boucher: New page: Hallo liebe Residens!  Willkommen auf meinem Wiki.Secondlife.com Profil-Seite!  Bald werde ich mehr rein schreiben! Doch bis dahin viel Spass in Second Life!  Liebe Grüße --~~~~&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hallo liebe Residens!&lt;br /&gt;
&lt;br /&gt;
Willkommen auf meinem Wiki.Secondlife.com Profil-Seite!&lt;br /&gt;
&lt;br /&gt;
Bald werde ich mehr rein schreiben! Doch bis dahin viel Spass in Second Life!&lt;br /&gt;
&lt;br /&gt;
Liebe Grüße --[[User:Albrecht Boucher|Albrecht Boucher]] 13:15, 4 April 2008 (PDT)&lt;/div&gt;</summary>
		<author><name>Albrecht Boucher</name></author>
	</entry>
</feed>