<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Flash and Flash Video EPiServer Dynamic Content</title>
	<atom:link href="http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/</link>
	<description></description>
	<lastBuildDate>Thu, 11 Mar 2010 13:07:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mårten Berg</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-212</link>
		<dc:creator>Mårten Berg</dc:creator>
		<pubDate>Thu, 11 Mar 2010 13:07:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-212</guid>
		<description>Works great, thanks for the post.</description>
		<content:encoded><![CDATA[<p>Works great, thanks for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frederik Vig</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-142</link>
		<dc:creator>Frederik Vig</dc:creator>
		<pubDate>Tue, 22 Dec 2009 10:55:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-142</guid>
		<description>Should work fine with EPiServer CMS 5 R2 and later. Have you tried using the test movie I linked to in my comment above?</description>
		<content:encoded><![CDATA[<p>Should work fine with EPiServer CMS 5 R2 and later. Have you tried using the test movie I linked to in my comment above?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey Lazarev</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-141</link>
		<dc:creator>Andrey Lazarev</dc:creator>
		<pubDate>Mon, 21 Dec 2009 15:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-141</guid>
		<description>////////////////////////////////
Hi Andrey!
Make sure that you copied the Flowplayer folder, and placed it in your sites root folder (http://example.com/Flowplayer). I’ve been testing with this file http://flowplayer.org/video/flowplayer-700.flv, though I know Flowplayer supports other formats as well (see http://flowplayer.org/documentation/technical-facts.html) – your best bet is to convert your movies to .flv.

Hope this helps.

Frederik
////////////////////////////////


Sorry, but - no luck :(
It&#039;s not working. I&#039;ve tried different ways to provide the path to FLV-file in plugin interface, but got only the black square with &quot;Movie not loaded&quot; in the context menu. Are you sure it&#039;s wotking with the EPiServer CMS of 5 version? Maybe there should be some pre-requisites or some web.config-tuning for the application?</description>
		<content:encoded><![CDATA[<p>////////////////////////////////<br />
Hi Andrey!<br />
Make sure that you copied the Flowplayer folder, and placed it in your sites root folder (<a href="http://example.com/Flowplayer" rel="nofollow">http://example.com/Flowplayer</a>). I’ve been testing with this file <a href="http://flowplayer.org/video/flowplayer-700.flv" rel="nofollow">http://flowplayer.org/video/flowplayer-700.flv</a>, though I know Flowplayer supports other formats as well (see <a href="http://flowplayer.org/documentation/technical-facts.html)" rel="nofollow">http://flowplayer.org/documentation/technical-facts.html)</a> – your best bet is to convert your movies to .flv.</p>
<p>Hope this helps.</p>
<p>Frederik<br />
////////////////////////////////</p>
<p>Sorry, but &#8211; no luck <img src='http://www.frederikvig.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
It&#8217;s not working. I&#8217;ve tried different ways to provide the path to FLV-file in plugin interface, but got only the black square with &#8220;Movie not loaded&#8221; in the context menu. Are you sure it&#8217;s wotking with the EPiServer CMS of 5 version? Maybe there should be some pre-requisites or some web.config-tuning for the application?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C-J Berg</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-69</link>
		<dc:creator>C-J Berg</dc:creator>
		<pubDate>Sun, 29 Nov 2009 00:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-69</guid>
		<description>You shouldn’t use the GetHashCode value for building the id, since it doesn’t guarantee uniqueness; it only aims to distribute its values uniformly. A lot of developers get this wrong.

It would be better to allow the user to optionally enter a specific id, should she want to (like you first did). Who knows, perhaps it’s needed by some custom JavaScript code the user also adds to the page. When it’s not filled in, you could automatically generate a request unique id by utilizing a counter in Context.Items.

Better yet is to replace the fugly built-in editor with some decent alternative, such as TinyMCE that already has a media plug-in. :-)</description>
		<content:encoded><![CDATA[<p>You shouldn’t use the GetHashCode value for building the id, since it doesn’t guarantee uniqueness; it only aims to distribute its values uniformly. A lot of developers get this wrong.</p>
<p>It would be better to allow the user to optionally enter a specific id, should she want to (like you first did). Who knows, perhaps it’s needed by some custom JavaScript code the user also adds to the page. When it’s not filled in, you could automatically generate a request unique id by utilizing a counter in Context.Items.</p>
<p>Better yet is to replace the fugly built-in editor with some decent alternative, such as TinyMCE that already has a media plug-in. <img src='http://www.frederikvig.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frederik Vig</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-68</link>
		<dc:creator>Frederik Vig</dc:creator>
		<pubDate>Wed, 25 Nov 2009 08:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-68</guid>
		<description>Hi Andrey!
Make sure that you copied the Flowplayer folder, and placed it in your sites root folder (http://example.com/Flowplayer). I&#039;ve been testing with this file http://flowplayer.org/video/flowplayer-700.flv, though I know Flowplayer supports other formats as well (see http://flowplayer.org/documentation/technical-facts.html) - your best bet is to convert your movies to .flv. 

Hope this helps.

Frederik</description>
		<content:encoded><![CDATA[<p>Hi Andrey!<br />
Make sure that you copied the Flowplayer folder, and placed it in your sites root folder (<a href="http://example.com/Flowplayer" rel="nofollow">http://example.com/Flowplayer</a>). I&#8217;ve been testing with this file <a href="http://flowplayer.org/video/flowplayer-700.flv" rel="nofollow">http://flowplayer.org/video/flowplayer-700.flv</a>, though I know Flowplayer supports other formats as well (see <a href="http://flowplayer.org/documentation/technical-facts.html)" rel="nofollow">http://flowplayer.org/documentation/technical-facts.html)</a> &#8211; your best bet is to convert your movies to .flv. </p>
<p>Hope this helps.</p>
<p>Frederik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrey Lazarev</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-67</link>
		<dc:creator>Andrey Lazarev</dc:creator>
		<pubDate>Tue, 24 Nov 2009 17:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-67</guid>
		<description>Hello, Fredrik!

I found your player compilation very useful but got two major &#039;bugs&#039;:

1. Player is unable to play anything except SWF-files. I followed your steps in &#039;Installation&#039; section but it seems that more verbose installation procedure is required for me :(

2. I can&#039;t see any controls at all for the movie. Is it normal?</description>
		<content:encoded><![CDATA[<p>Hello, Fredrik!</p>
<p>I found your player compilation very useful but got two major &#8216;bugs&#8217;:</p>
<p>1. Player is unable to play anything except SWF-files. I followed your steps in &#8216;Installation&#8217; section but it seems that more verbose installation procedure is required for me <img src='http://www.frederikvig.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>2. I can&#8217;t see any controls at all for the movie. Is it normal?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frederik Vig</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-66</link>
		<dc:creator>Frederik Vig</dc:creator>
		<pubDate>Thu, 19 Nov 2009 08:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-66</guid>
		<description>Hi Martin!
Good suggestion on the GetHashCode method. I&#039;ve updated the code now, and removed the id field. One thing to remember though is that HTML id attributes cannot start with a digit, they have to start with a letter in the roman alphabet (I just added the flash prefix for this).

Frederik</description>
		<content:encoded><![CDATA[<p>Hi Martin!<br />
Good suggestion on the GetHashCode method. I&#8217;ve updated the code now, and removed the id field. One thing to remember though is that HTML id attributes cannot start with a digit, they have to start with a letter in the roman alphabet (I just added the flash prefix for this).</p>
<p>Frederik</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Emanuelsson</title>
		<link>http://www.frederikvig.com/2009/11/flash-and-flash-video-episerver-dynamic-content/comment-page-1/#comment-65</link>
		<dc:creator>Martin Emanuelsson</dc:creator>
		<pubDate>Wed, 18 Nov 2009 20:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.frederikvig.com/?p=448#comment-65</guid>
		<description>Hello Frederik, 

Good improvements to Allan&#039;s dynamic content. Just wanted to give a suggestion regarding the id that you add manually here. We&#039;ve done similar updates to Allan&#039;s code, without the flash video option but with for instance swfobject, like you have, and also the possibility to feed xml to the flash for localization and such things. But regarding the id, we&#039;ve solved this by adding the following code to the places where this has to be unique:

this.GetHashCode().ToString()

This way the editor doesn&#039;t have to add id manually but instead this is handled automatically for them, just a suggestion :-)

Best regards
Martin</description>
		<content:encoded><![CDATA[<p>Hello Frederik, </p>
<p>Good improvements to Allan&#8217;s dynamic content. Just wanted to give a suggestion regarding the id that you add manually here. We&#8217;ve done similar updates to Allan&#8217;s code, without the flash video option but with for instance swfobject, like you have, and also the possibility to feed xml to the flash for localization and such things. But regarding the id, we&#8217;ve solved this by adding the following code to the places where this has to be unique:</p>
<p>this.GetHashCode().ToString()</p>
<p>This way the editor doesn&#8217;t have to add id manually but instead this is handled automatically for them, just a suggestion <img src='http://www.frederikvig.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Best regards<br />
Martin</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->