<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Second Life hidden video secrets</title>
	<atom:link href="http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/feed/" rel="self" type="application/rss+xml" />
	<link>http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/</link>
	<description>Emerging technology, Virtual Worlds and Cultural Observations</description>
	<pubDate>Thu, 28 Aug 2008 12:34:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Rob</title>
		<link>http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-914</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Fri, 22 Feb 2008 18:27:05 +0000</pubDate>
		<guid isPermaLink="false">http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-914</guid>
		<description>Hi Peter,

In the version you've posted there are quotes around "message" in the llParcelMediaCommandList

llParcelMediaCommandList( [
PARCEL_MEDIA_COMMAND_URL, “message”,
PARCEL_MEDIA_COMMAND_AGENT, (string)llDetectedKey(0),
PARCEL_MEDIA_COMMAND_TEXTURE, (key) llGetTexture(0) ] );
}

it should be

llParcelMediaCommandList( [
PARCEL_MEDIA_COMMAND_URL, message,
PARCEL_MEDIA_COMMAND_AGENT, id,
PARCEL_MEDIA_COMMAND_TEXTURE, (key) llGetTexture(0) ] );
}

with no quotes around message...

hope this helps</description>
		<content:encoded><![CDATA[<p>Hi Peter,</p>
<p>In the version you&#8217;ve posted there are quotes around &#8220;message&#8221; in the llParcelMediaCommandList</p>
<p>llParcelMediaCommandList( [<br />
PARCEL_MEDIA_COMMAND_URL, “message”,<br />
PARCEL_MEDIA_COMMAND_AGENT, (string)llDetectedKey(0),<br />
PARCEL_MEDIA_COMMAND_TEXTURE, (key) llGetTexture(0) ] );<br />
}</p>
<p>it should be</p>
<p>llParcelMediaCommandList( [<br />
PARCEL_MEDIA_COMMAND_URL, message,<br />
PARCEL_MEDIA_COMMAND_AGENT, id,<br />
PARCEL_MEDIA_COMMAND_TEXTURE, (key) llGetTexture(0) ] );<br />
}</p>
<p>with no quotes around message&#8230;</p>
<p>hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Weiss</title>
		<link>http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-913</link>
		<dc:creator>Peter Weiss</dc:creator>
		<pubDate>Fri, 22 Feb 2008 15:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-913</guid>
		<description>OK, i found the error you get if you are using that code from the Website.
The quotes character “” used in the example script on that Website must be replaced with the real quotes character " .. but anyhow can not get it to work.

Also tried it out with an ALT Account .. Anybody has an idea ?

I post the quota replaced code here added some debug messages:

integer listen_handle;

default
{
state_entry()
{
listen_handle = llListen(10, "", "", "");
}

touch_start(integer total_number)
{
llSay(0, "talk on channel 10 to set your personal video for this land");
llSay(0, "Avatar that touched me"+(string)llDetectedKey(0));
}

listen( integer channel, string name, key id, string message )
{
llSay(0, "Setting Video play back to " + message);
llParcelMediaCommandList( [
PARCEL_MEDIA_COMMAND_URL, "message",
PARCEL_MEDIA_COMMAND_AGENT, (string)llDetectedKey(0),
PARCEL_MEDIA_COMMAND_TEXTURE, (key) llGetTexture(0) ] );
}

}

When i click on the Prim the Script listens on Channel 10.

I used /10 http://www.myserver/myvideo.mp4 in the Chat
(this is an example i used a correct url for that) and the object
responds with the correct message but the video stream will not
be switched. I tried it with an object deeded to my land and also
with a prim not deeded to my land.


what am i missing ?
best regards</description>
		<content:encoded><![CDATA[<p>OK, i found the error you get if you are using that code from the Website.<br />
The quotes character “” used in the example script on that Website must be replaced with the real quotes character &#8221; .. but anyhow can not get it to work.</p>
<p>Also tried it out with an ALT Account .. Anybody has an idea ?</p>
<p>I post the quota replaced code here added some debug messages:</p>
<p>integer listen_handle;</p>
<p>default<br />
{<br />
state_entry()<br />
{<br />
listen_handle = llListen(10, &#8220;&#8221;, &#8220;&#8221;, &#8220;&#8221;);<br />
}</p>
<p>touch_start(integer total_number)<br />
{<br />
llSay(0, &#8220;talk on channel 10 to set your personal video for this land&#8221;);<br />
llSay(0, &#8220;Avatar that touched me&#8221;+(string)llDetectedKey(0));<br />
}</p>
<p>listen( integer channel, string name, key id, string message )<br />
{<br />
llSay(0, &#8220;Setting Video play back to &#8221; + message);<br />
llParcelMediaCommandList( [<br />
PARCEL_MEDIA_COMMAND_URL, "message",<br />
PARCEL_MEDIA_COMMAND_AGENT, (string)llDetectedKey(0),<br />
PARCEL_MEDIA_COMMAND_TEXTURE, (key) llGetTexture(0) ] );<br />
}</p>
<p>}</p>
<p>When i click on the Prim the Script listens on Channel 10.</p>
<p>I used /10 <a href="http://www.myserver/myvideo.mp4" rel="nofollow">http://www.myserver/myvideo.mp4</a> in the Chat<br />
(this is an example i used a correct url for that) and the object<br />
responds with the correct message but the video stream will not<br />
be switched. I tried it with an object deeded to my land and also<br />
with a prim not deeded to my land.</p>
<p>what am i missing ?<br />
best regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Weiss</title>
		<link>http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-906</link>
		<dc:creator>Peter Weiss</dc:creator>
		<pubDate>Tue, 19 Feb 2008 18:56:07 +0000</pubDate>
		<guid isPermaLink="false">http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-906</guid>
		<description>the female avi is looking on the right screen and the male Avatar is
looking on the left screen *somuchforextrapoints .. but mayby you 
can contact me InWorld and give me a hint how to get this script
running  (syntax error 6,33) ..</description>
		<content:encoded><![CDATA[<p>the female avi is looking on the right screen and the male Avatar is<br />
looking on the left screen *somuchforextrapoints .. but mayby you<br />
can contact me InWorld and give me a hint how to get this script<br />
running  (syntax error 6,33) ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Expletive Acronym</title>
		<link>http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-905</link>
		<dc:creator>Expletive Acronym</dc:creator>
		<pubDate>Sat, 16 Feb 2008 20:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-905</guid>
		<description>I can finally watch porn on PG land?

WIN!</description>
		<content:encoded><![CDATA[<p>I can finally watch porn on PG land?</p>
<p>WIN!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: OLE genesis &#187; Archives &#187; video secrets in SL</title>
		<link>http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-843</link>
		<dc:creator>OLE genesis &#187; Archives &#187; video secrets in SL</dc:creator>
		<pubDate>Sun, 28 Oct 2007 11:26:49 +0000</pubDate>
		<guid isPermaLink="false">http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/#comment-843</guid>
		<description>[...] http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/ [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/" rel="nofollow">http://robsmart.co.uk/2007/10/27/second-life-hidden-video-secrets/</a> [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
