<?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: This OSMF has RobotLegs</title>
	<atom:link href="http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/</link>
	<description>Interactive designer / developer • Web • Mobile • Desktop</description>
	<lastBuildDate>Thu, 19 Jan 2012 12:18:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: jadd</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-350</link>
		<dc:creator>jadd</dc:creator>
		<pubDate>Tue, 28 Dec 2010 17:40:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-350</guid>
		<description>5 minutes changing and working (easier than expected!). These are the only to changes in code (look for &quot;changed..&quot;) and rearrenge some import statement:

		public function MediaPlayerView()
		{
			media = new MediaPlayerSprite();
			//media.setAvailableSize(320, 240); changed in osmf 1.5
			media.width = 320;
			media.height = 240;
			media.mediaPlayer.autoPlay = false;
			media.mediaPlayer.addEventListener(LoadEvent.BYTES_LOADED_CHANGE, onBytesLoadedChange, false, 0, true);
			media.mediaPlayer.addEventListener(LoadEvent.BYTES_TOTAL_CHANGE, onBytesTotalChange, false, 0, true);			
			media.mediaPlayer.addEventListener( TimeEvent.DURATION_CHANGE, onDurationChange, false, 0, true );
			media.mediaPlayer.addEventListener(TimeEvent.CURRENT_TIME_CHANGE, onPlayheadChange, false, 0, true);
			addChild(media);
			//// ADD PLAY BUTTON
			playButton = new PlayButton();
			addChild(playButton);
			playButton.x = playButton.y = 5;
			
			playButton.addEventListener(MouseEvent.CLICK, handlePlayClick, false, 0, true);
			
		}

		
		public function testProgressive():void{
			//media.element = new VideoElement(new NetLoader(), new URLResource(new URL(TEST_PROGRESSIVE_URL))); changed in osmf 1.5
			media.resource = new URLResource(TEST_PROGRESSIVE_URL);
		}</description>
		<content:encoded><![CDATA[<p>5 minutes changing and working (easier than expected!). These are the only to changes in code (look for &#8220;changed..&#8221;) and rearrenge some import statement:</p>
<p>		public function MediaPlayerView()<br />
		{<br />
			media = new MediaPlayerSprite();<br />
			//media.setAvailableSize(320, 240); changed in osmf 1.5<br />
			media.width = 320;<br />
			media.height = 240;<br />
			media.mediaPlayer.autoPlay = false;<br />
			media.mediaPlayer.addEventListener(LoadEvent.BYTES_LOADED_CHANGE, onBytesLoadedChange, false, 0, true);<br />
			media.mediaPlayer.addEventListener(LoadEvent.BYTES_TOTAL_CHANGE, onBytesTotalChange, false, 0, true);<br />
			media.mediaPlayer.addEventListener( TimeEvent.DURATION_CHANGE, onDurationChange, false, 0, true );<br />
			media.mediaPlayer.addEventListener(TimeEvent.CURRENT_TIME_CHANGE, onPlayheadChange, false, 0, true);<br />
			addChild(media);<br />
			//// ADD PLAY BUTTON<br />
			playButton = new PlayButton();<br />
			addChild(playButton);<br />
			playButton.x = playButton.y = 5;</p>
<p>			playButton.addEventListener(MouseEvent.CLICK, handlePlayClick, false, 0, true);</p>
<p>		}</p>
<p>		public function testProgressive():void{<br />
			//media.element = new VideoElement(new NetLoader(), new URLResource(new URL(TEST_PROGRESSIVE_URL))); changed in osmf 1.5<br />
			media.resource = new URLResource(TEST_PROGRESSIVE_URL);<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jadd</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-349</link>
		<dc:creator>jadd</dc:creator>
		<pubDate>Tue, 28 Dec 2010 17:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-349</guid>
		<description>hello, could be nice to have an osmf version 1.5.
Thanks in any case.</description>
		<content:encoded><![CDATA[<p>hello, could be nice to have an osmf version 1.5.<br />
Thanks in any case.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-340</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Wed, 17 Nov 2010 19:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-340</guid>
		<description>I prefer to dispatch custom events to the rest of the app because it decouples the app from the OSMF library. Is that what you mean?</description>
		<content:encoded><![CDATA[<p>I prefer to dispatch custom events to the rest of the app because it decouples the app from the OSMF library. Is that what you mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-339</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Wed, 10 Nov 2010 09:33:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-339</guid>
		<description>What about using native OSMF Events and re-dispatch them instead of using custom MediaPlayerEvent?</description>
		<content:encoded><![CDATA[<p>What about using native OSMF Events and re-dispatch them instead of using custom MediaPlayerEvent?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Blair</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-258</link>
		<dc:creator>Andrew Blair</dc:creator>
		<pubDate>Thu, 08 Apr 2010 18:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-258</guid>
		<description>Thanks Randy,

Great post. I have some of the same reasons for getting into OSMF (OVP specifically). Thanks for the ride on your coat tails.

Cheers,

Andrew</description>
		<content:encoded><![CDATA[<p>Thanks Randy,</p>
<p>Great post. I have some of the same reasons for getting into OSMF (OVP specifically). Thanks for the ride on your coat tails.</p>
<p>Cheers,</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stef</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-256</link>
		<dc:creator>Stef</dc:creator>
		<pubDate>Wed, 31 Mar 2010 15:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-256</guid>
		<description>Yep that was it^^ Things are a lot better now. Im not using a swc anymore but the complete source code just in case... But for now on it&#039;s working quite well! OSMF rocks ;-)</description>
		<content:encoded><![CDATA[<p>Yep that was it^^ Things are a lot better now. Im not using a swc anymore but the complete source code just in case&#8230; But for now on it&#8217;s working quite well! OSMF rocks <img src='http://www.randytroppmann.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Randy</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-254</link>
		<dc:creator>Randy</dc:creator>
		<pubDate>Wed, 24 Mar 2010 22:45:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-254</guid>
		<description>Hey Stef, are using the latest release (sprint 10 at this time)? http://opensource.adobe.com/wiki/display/osmf/Downloads</description>
		<content:encoded><![CDATA[<p>Hey Stef, are using the latest release (sprint 10 at this time)? <a href="http://opensource.adobe.com/wiki/display/osmf/Downloads" rel="nofollow">http://opensource.adobe.com/wiki/display/osmf/Downloads</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stef</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-253</link>
		<dc:creator>Stef</dc:creator>
		<pubDate>Wed, 24 Mar 2010 15:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-253</guid>
		<description>Ive tried to use it in the latest release of FlashBuilder 4. I dont have any compiler errors but at runtime Ive got that: &quot;VerifyError: Error #1053: Illegal override of NetLoader in org.osmf.net.NetLoader.&quot; Seems to be coming from the OSMF lib obviously but as its a swc I dont really get how to fix it...</description>
		<content:encoded><![CDATA[<p>Ive tried to use it in the latest release of FlashBuilder 4. I dont have any compiler errors but at runtime Ive got that: &#8220;VerifyError: Error #1053: Illegal override of NetLoader in org.osmf.net.NetLoader.&#8221; Seems to be coming from the OSMF lib obviously but as its a swc I dont really get how to fix it&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weekly Digest for March 23rd</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-252</link>
		<dc:creator>Weekly Digest for March 23rd</dc:creator>
		<pubDate>Tue, 23 Mar 2010 12:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-252</guid>
		<description>[...] Randy Troppmann » This OSMF has RobotLegs [...]</description>
		<content:encoded><![CDATA[<p>[...] Randy Troppmann » This OSMF has RobotLegs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JesterXL</title>
		<link>http://www.randytroppmann.com/2010/01/17/this-osmf-has-robotlegs/comment-page-1/#comment-231</link>
		<dc:creator>JesterXL</dc:creator>
		<pubDate>Sun, 17 Jan 2010 22:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.randytroppmann.com/?p=511#comment-231</guid>
		<description>&quot;dot oh release&quot; == WIN, lol!</description>
		<content:encoded><![CDATA[<p>&#8220;dot oh release&#8221; == WIN, lol!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

