<?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: Build an Adobe AIR RSS reader</title>
	<atom:link href="http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/</link>
	<description>Web Design for real people</description>
	<lastBuildDate>Wed, 08 Feb 2012 20:04:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Adobe Air - Programming Resources</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-77215</link>
		<dc:creator>Adobe Air - Programming Resources</dc:creator>
		<pubDate>Wed, 21 Sep 2011 07:11:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-77215</guid>
		<description>[...] Build an Adobe AIR RSS reader This article shows you how to build an Adobe AIR RSS reader. [...]</description>
		<content:encoded><![CDATA[<p>[...] Build an Adobe AIR RSS reader This article shows you how to build an Adobe AIR RSS reader. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-36077</link>
		<dc:creator>Lars</dc:creator>
		<pubDate>Mon, 23 May 2011 09:55:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-36077</guid>
		<description>Hi,

Thanks for this cool tutorial! I&#039;ve adapted it to my needs but now I&#039;m struggling to add more links at the bottom. I&#039;ve added 4 more links at the bottom (and added new variables: url2, url3, url4 + url5) but they all go to the first URL I specify - can you help? Here is my actionscript:

/*
blog link
*/
link_mc.buttonMode=true;
link_mc.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);

function linkMouseDown(evt:MouseEvent):void {

	var url=&quot;http://www.popularmechanics.co.za/page/blogs&quot;;
	var request:URLRequest=new URLRequest(url);

	navigateToURL(request, &#039;_blank&#039;);// second argument is target



}

/*
videos link
*/
link_mc_videos.buttonMode=true;
link_mc_videos.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);

function linkMouseDown2(evt:MouseEvent):void {

	var url2=&quot;http://www.popularmechanics.co.za/page/videos&quot;;
	var request:URLRequest=new URLRequest(url2);

	navigateToURL(request, &#039;_blank&#039;);// second argument is target



}

/*
images link
*/
link_mc_images.buttonMode=true;
link_mc_images.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);

function linkMouseDown3(evt:MouseEvent):void {

	var url3=&quot;http://www.popularmechanics.co.za/page/images-of-the-week&quot;;
	var request:URLRequest=new URLRequest(url3);

	navigateToURL(request, &#039;_blank&#039;);// second argument is target



}

/*
wallpapers link
*/
link_mc_wallpapers.buttonMode=true;
link_mc_wallpapers.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);

function linkMouseDown4(evt:MouseEvent):void {

	var url4=&quot;http://www.popularmechanics.co.za/page/wallpaper&quot;;
	var request:URLRequest=new URLRequest(url4);

	navigateToURL(request, &#039;_blank&#039;);// second argument is target



}

/*
competitions link
*/
link_mc_competitions.buttonMode=true;
link_mc_competitions.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);

function linkMouseDown5(evt:MouseEvent):void {

	var url5=&quot;http://www.popularmechanics.co.za/page/latest-competitions&quot;;
	var request:URLRequest=new URLRequest(url5);

	navigateToURL(request, &#039;_blank&#039;);// second argument is target



}</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Thanks for this cool tutorial! I&#8217;ve adapted it to my needs but now I&#8217;m struggling to add more links at the bottom. I&#8217;ve added 4 more links at the bottom (and added new variables: url2, url3, url4 + url5) but they all go to the first URL I specify &#8211; can you help? Here is my actionscript:</p>
<p>/*<br />
blog link<br />
*/<br />
link_mc.buttonMode=true;<br />
link_mc.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);</p>
<p>function linkMouseDown(evt:MouseEvent):void {</p>
<p>	var url=&#8221;http://www.popularmechanics.co.za/page/blogs&#8221;;<br />
	var request:URLRequest=new URLRequest(url);</p>
<p>	navigateToURL(request, &#8216;_blank&#8217;);// second argument is target</p>
<p>}</p>
<p>/*<br />
videos link<br />
*/<br />
link_mc_videos.buttonMode=true;<br />
link_mc_videos.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);</p>
<p>function linkMouseDown2(evt:MouseEvent):void {</p>
<p>	var url2=&#8221;http://www.popularmechanics.co.za/page/videos&#8221;;<br />
	var request:URLRequest=new URLRequest(url2);</p>
<p>	navigateToURL(request, &#8216;_blank&#8217;);// second argument is target</p>
<p>}</p>
<p>/*<br />
images link<br />
*/<br />
link_mc_images.buttonMode=true;<br />
link_mc_images.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);</p>
<p>function linkMouseDown3(evt:MouseEvent):void {</p>
<p>	var url3=&#8221;http://www.popularmechanics.co.za/page/images-of-the-week&#8221;;<br />
	var request:URLRequest=new URLRequest(url3);</p>
<p>	navigateToURL(request, &#8216;_blank&#8217;);// second argument is target</p>
<p>}</p>
<p>/*<br />
wallpapers link<br />
*/<br />
link_mc_wallpapers.buttonMode=true;<br />
link_mc_wallpapers.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);</p>
<p>function linkMouseDown4(evt:MouseEvent):void {</p>
<p>	var url4=&#8221;http://www.popularmechanics.co.za/page/wallpaper&#8221;;<br />
	var request:URLRequest=new URLRequest(url4);</p>
<p>	navigateToURL(request, &#8216;_blank&#8217;);// second argument is target</p>
<p>}</p>
<p>/*<br />
competitions link<br />
*/<br />
link_mc_competitions.buttonMode=true;<br />
link_mc_competitions.addEventListener(MouseEvent.MOUSE_DOWN, linkMouseDown);</p>
<p>function linkMouseDown5(evt:MouseEvent):void {</p>
<p>	var url5=&#8221;http://www.popularmechanics.co.za/page/latest-competitions&#8221;;<br />
	var request:URLRequest=new URLRequest(url5);</p>
<p>	navigateToURL(request, &#8216;_blank&#8217;);// second argument is target</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Britney Wilson</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-3616</link>
		<dc:creator>Britney Wilson</dc:creator>
		<pubDate>Sat, 13 Mar 2010 19:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-3616</guid>
		<description>I could not get this tutorial to work for me. I&#039;m not sure what went wrong. It says you will have to create a certificate and follow the steps, but I didn&#039;t see the steps. When I tried to launch it just shows frame one and the loader item scrolling continually. Nothing else. Please help or I just wasted a few hours of my day.</description>
		<content:encoded><![CDATA[<p>I could not get this tutorial to work for me. I&#8217;m not sure what went wrong. It says you will have to create a certificate and follow the steps, but I didn&#8217;t see the steps. When I tried to launch it just shows frame one and the loader item scrolling continually. Nothing else. Please help or I just wasted a few hours of my day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-1711</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 06 Oct 2009 19:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-1711</guid>
		<description>Excellent tutorial. I&#039;m also doing AIR tutorials over at Livebrush.org</description>
		<content:encoded><![CDATA[<p>Excellent tutorial. I&#8217;m also doing AIR tutorials over at Livebrush.org</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Barker</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-1116</link>
		<dc:creator>Bob Barker</dc:creator>
		<pubDate>Mon, 27 Jul 2009 20:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-1116</guid>
		<description>Your magazine certainly offers an abundance of tutorials—some well written and thorough, and some are simply missing steps—or at least contain confusing or incomplete instructions, often leaving a frustrated reader.

Here is a tip—directly related to this tutorial, and to many others: refrain from &quot;jazzing-up&quot; your tutorials. We do not need to see your striped borders, or lovely logos, etc—provide the functionality, and the guts. By requiring that 1/3 of a tutorials steps are related to some custom (and useless) design elements—it results in...

1. Longer time to complete the tutorial
2. More chance of problems
3. Loss of desire to do more

Trust me—it never adds to a tutorial, it only detracts.</description>
		<content:encoded><![CDATA[<p>Your magazine certainly offers an abundance of tutorials—some well written and thorough, and some are simply missing steps—or at least contain confusing or incomplete instructions, often leaving a frustrated reader.</p>
<p>Here is a tip—directly related to this tutorial, and to many others: refrain from &#8220;jazzing-up&#8221; your tutorials. We do not need to see your striped borders, or lovely logos, etc—provide the functionality, and the guts. By requiring that 1/3 of a tutorials steps are related to some custom (and useless) design elements—it results in&#8230;</p>
<p>1. Longer time to complete the tutorial<br />
2. More chance of problems<br />
3. Loss of desire to do more</p>
<p>Trust me—it never adds to a tutorial, it only detracts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ScriptPlazza</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-986</link>
		<dc:creator>ScriptPlazza</dc:creator>
		<pubDate>Fri, 10 Jul 2009 11:04:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-986</guid>
		<description>Nice tutorial GJ!</description>
		<content:encoded><![CDATA[<p>Nice tutorial GJ!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-927</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 01 Jul 2009 16:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-927</guid>
		<description>Thanks for the tutorial Darren.

For those following the instructions in the mag:

Remember to add WebDesignerRssViewer as your document class in the properties panel otherwise you&#039;ll just get the &quot;loader_mc&quot; looping constantly and you&#039;ll be oblivious as to why your content isn&#039;t loading!

Also, the feed in the magazine is out of date.
At the time of writing this post it should be:
http://www.webdesignermag.co.uk/feed/</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial Darren.</p>
<p>For those following the instructions in the mag:</p>
<p>Remember to add WebDesignerRssViewer as your document class in the properties panel otherwise you&#8217;ll just get the &#8220;loader_mc&#8221; looping constantly and you&#8217;ll be oblivious as to why your content isn&#8217;t loading!</p>
<p>Also, the feed in the magazine is out of date.<br />
At the time of writing this post it should be:<br />
<a href="http://www.webdesignermag.co.uk/feed/" rel="nofollow">http://www.webdesignermag.co.uk/feed/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marriage visa</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-870</link>
		<dc:creator>Marriage visa</dc:creator>
		<pubDate>Sun, 21 Jun 2009 13:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-870</guid>
		<description>PHP RSS to Array function:
http://www.phpinform.com/2009/06/21/php-rss-to-array-function/</description>
		<content:encoded><![CDATA[<p>PHP RSS to Array function:<br />
<a href="http://www.phpinform.com/2009/06/21/php-rss-to-array-function/" rel="nofollow">http://www.phpinform.com/2009/06/21/php-rss-to-array-function/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-867</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sun, 21 Jun 2009 04:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-867</guid>
		<description>Does this update on its own when a new Post is made? and does it alert the user of the new post?</description>
		<content:encoded><![CDATA[<p>Does this update on its own when a new Post is made? and does it alert the user of the new post?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nunzio</title>
		<link>http://www.webdesignermag.co.uk/blog/build-an-adobe-air-rss-reader/comment-page-1/#comment-853</link>
		<dc:creator>nunzio</dc:creator>
		<pubDate>Thu, 18 Jun 2009 14:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdesignermag.co.uk/?p=2471#comment-853</guid>
		<description>COol tutorial, but I don&#039;t understand where I can download this demo...</description>
		<content:encoded><![CDATA[<p>COol tutorial, but I don&#8217;t understand where I can download this demo&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

