<?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: ActionScript 3 YouTube feed application</title>
	<atom:link href="http://vamapaull.com/actionscript-3-youtube-feed-application/feed/" rel="self" type="application/rss+xml" />
	<link>http://vamapaull.com/actionscript-3-youtube-feed-application/</link>
	<description>It&#039;s all about Flash and Flash related technologies</description>
	<lastBuildDate>Fri, 10 May 2013 20:20:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: vamapaull</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-114953</link>
		<dc:creator>vamapaull</dc:creator>
		<pubDate>Mon, 14 Jan 2013 11:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-114953</guid>
		<description><![CDATA[Actually you can, yes. 
I did that for a player of mine that I sell on ActiveDen:
http://activeden.net/item/youtube-playlist-reader/97090?ref=vamapaull]]></description>
		<content:encoded><![CDATA[<p>Actually you can, yes.<br />
I did that for a player of mine that I sell on ActiveDen:<br />
<a href="http://activeden.net/item/youtube-playlist-reader/97090?ref=vamapaull" rel="nofollow">http://activeden.net/item/youtube-playlist-reader/97090?ref=vamapaull</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: XtrekX</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-114952</link>
		<dc:creator>XtrekX</dc:creator>
		<pubDate>Mon, 14 Jan 2013 11:12:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-114952</guid>
		<description><![CDATA[can you alter this to show a playlist... if possible... HOW?? futhermore AWESOME]]></description>
		<content:encoded><![CDATA[<p>can you alter this to show a playlist&#8230; if possible&#8230; HOW?? futhermore AWESOME</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vamapaull</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-101752</link>
		<dc:creator>vamapaull</dc:creator>
		<pubDate>Wed, 09 May 2012 08:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-101752</guid>
		<description><![CDATA[This is how you can retrieve the thumbnail: &quot;http://img.youtube.com/vi/&quot; + videoID + &quot;/2.jpg&quot;]]></description>
		<content:encoded><![CDATA[<p>This is how you can retrieve the thumbnail: &#8220;http://img.youtube.com/vi/&#8221; + videoID + &#8220;/2.jpg&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-101715</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Tue, 08 May 2012 22:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-101715</guid>
		<description><![CDATA[How can I retrieve the thumbnail of the video?]]></description>
		<content:encoded><![CDATA[<p>How can I retrieve the thumbnail of the video?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luccio</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-72878</link>
		<dc:creator>Luccio</dc:creator>
		<pubDate>Fri, 07 Oct 2011 21:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-72878</guid>
		<description><![CDATA[This code works! Congratulations!]]></description>
		<content:encoded><![CDATA[<p>This code works! Congratulations!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vamapaull</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-13671</link>
		<dc:creator>vamapaull</dc:creator>
		<pubDate>Sat, 20 Feb 2010 03:18:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-13671</guid>
		<description><![CDATA[Try this onLoad function:
&lt;pre lang=&quot;actionscript3&quot;&gt;function onLoaded(e:Event):void
{
	var defaultNS:Namespace = new Namespace(&quot;http://www.w3.org/2005/Atom&quot;);
	var mediaNS:Namespace = new Namespace(&quot;http://search.yahoo.com/mrss/&quot;);
	var ytNS:Namespace = new Namespace(&quot;http://gdata.youtube.com/schemas/2007&quot;);
 
	xml = new XML(e.target.data);
	var il:XMLList = xml.defaultNS::entry;
	for(var i:uint=0; i&lt;il.length(); i++)
	{
		var ytId:String = il[i].mediaNS::group.ytNS::videoid;
		lb.addItem({data:ytId, label:il[i].defaultNS::title});
	}
}&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Try this onLoad function:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #339966; font-weight: bold;">function</span> onLoaded<span style="color: #000000;">&#40;</span>e<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
<span style="color: #000000;">&#123;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> defaultNS<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Namespace</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Namespace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;http://www.w3.org/2005/Atom&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> mediaNS<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Namespace</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Namespace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;http://search.yahoo.com/mrss/&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> ytNS<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">Namespace</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Namespace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;http://gdata.youtube.com/schemas/2007&quot;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
&nbsp;
	xml = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">XML</span><span style="color: #000000;">&#40;</span>e<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">target</span><span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">data</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
	<span style="color: #6699cc; font-weight: bold;">var</span> il<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">XMLList</span> = xml<span style="color: #000066; font-weight: bold;">.</span>defaultNS<span style="color: #000066; font-weight: bold;">::</span>entry<span style="color: #000066; font-weight: bold;">;</span>
	<span style="color: #0033ff; font-weight: bold;">for</span><span style="color: #000000;">&#40;</span><span style="color: #6699cc; font-weight: bold;">var</span> i<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">uint</span>=<span style="color: #000000; font-weight:bold;">0</span><span style="color: #000066; font-weight: bold;">;</span> i<span style="color: #000066; font-weight: bold;">&amp;</span>lt<span style="color: #000066; font-weight: bold;">;</span>il<span style="color: #000066; font-weight: bold;">.</span><span style="color: #004993;">length</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span> i<span style="color: #000066; font-weight: bold;">++</span><span style="color: #000000;">&#41;</span>
	<span style="color: #000000;">&#123;</span>
		<span style="color: #6699cc; font-weight: bold;">var</span> ytId<span style="color: #000066; font-weight: bold;">:</span><span style="color: #004993;">String</span> = il<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span><span style="color: #000066; font-weight: bold;">.</span>mediaNS<span style="color: #000066; font-weight: bold;">::</span>group<span style="color: #000066; font-weight: bold;">.</span>ytNS<span style="color: #000066; font-weight: bold;">::</span>videoid<span style="color: #000066; font-weight: bold;">;</span>
		lb<span style="color: #000066; font-weight: bold;">.</span>addItem<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#123;</span><span style="color: #004993;">data</span><span style="color: #000066; font-weight: bold;">:</span>ytId<span style="color: #000066; font-weight: bold;">,</span> label<span style="color: #000066; font-weight: bold;">:</span>il<span style="color: #000000;">&#91;</span>i<span style="color: #000000;">&#93;</span><span style="color: #000066; font-weight: bold;">.</span>defaultNS<span style="color: #000066; font-weight: bold;">::</span>title<span style="color: #000000;">&#125;</span><span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span>
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-13650</link>
		<dc:creator>Jesse</dc:creator>
		<pubDate>Fri, 19 Feb 2010 17:36:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-13650</guid>
		<description><![CDATA[When I put a feed url for a certain playlist the list populates but the video doesn&#039;t play. any suggestions?

http://gdata.youtube.com/feeds/api/playlists/320BAFE81584B804?v=2]]></description>
		<content:encoded><![CDATA[<p>When I put a feed url for a certain playlist the list populates but the video doesn&#8217;t play. any suggestions?</p>
<p><a href="http://gdata.youtube.com/feeds/api/playlists/320BAFE81584B804?v=2" rel="nofollow">http://gdata.youtube.com/feeds/api/playlists/320BAFE81584B804?v=2</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Rockers</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-12836</link>
		<dc:creator>Scott Rockers</dc:creator>
		<pubDate>Fri, 29 Jan 2010 16:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-12836</guid>
		<description><![CDATA[Very nice. Good little tutorial on how to use the youtube api.]]></description>
		<content:encoded><![CDATA[<p>Very nice. Good little tutorial on how to use the youtube api.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Ferrie</title>
		<link>http://vamapaull.com/actionscript-3-youtube-feed-application/comment-page-1/#comment-12756</link>
		<dc:creator>Paul Ferrie</dc:creator>
		<pubDate>Wed, 27 Jan 2010 11:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vamapaull.com/?p=405#comment-12756</guid>
		<description><![CDATA[Hey nice work. Will definitely be looking at this at some point :)]]></description>
		<content:encoded><![CDATA[<p>Hey nice work. Will definitely be looking at this at some point <img src='http://vamapaull.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
