<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for AlaaShaker&#039;s Weblog</title>
	<atom:link href="http://alaashaker.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://alaashaker.wordpress.com</link>
	<description>// untitled ...</description>
	<lastBuildDate>Fri, 18 Dec 2009 11:21:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Connecting your iPhone to your Laptop using a wireless ad hoc network [iPhone] by anta</title>
		<link>http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-539</link>
		<dc:creator>anta</dc:creator>
		<pubDate>Fri, 18 Dec 2009 11:21:09 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-539</guid>
		<description>i not able to Join with Password..but without password when there is free authentication i can join it...ples help me to connect with password</description>
		<content:encoded><![CDATA[<p>i not able to Join with Password..but without password when there is free authentication i can join it&#8230;ples help me to connect with password</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your iPhone to your Laptop using a wireless ad hoc network [iPhone] by iPhone</title>
		<link>http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-538</link>
		<dc:creator>iPhone</dc:creator>
		<pubDate>Thu, 17 Dec 2009 20:02:48 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-538</guid>
		<description>ipodipo</description>
		<content:encoded><![CDATA[<p>ipodipo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your iPhone to your Laptop using a wireless ad hoc network [iPhone] by iPhone</title>
		<link>http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-537</link>
		<dc:creator>iPhone</dc:creator>
		<pubDate>Thu, 17 Dec 2009 20:01:54 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-537</guid>
		<description>i have iPhone i have iPhone lallallallalalalllala</description>
		<content:encoded><![CDATA[<p>i have iPhone i have iPhone lallallallalalalllala</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build your own Flash RSS Reader [Tutorial: Flash ActionScript 3.0] by Nick</title>
		<link>http://alaashaker.wordpress.com/2008/09/09/build-your-own-flash-rss-reader-tutorial-flash-actionscript-30/#comment-536</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Sun, 13 Dec 2009 22:39:25 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2008/09/09/build-your-own-flash-rss-reader-flash-actionscript-30/#comment-536</guid>
		<description>Hi Alaa, thanks for the tutorial, unfortunately the RSS feed is not displaying in the text areas. I was however able to display the data in the output window in the first part of the tutorial. I tried adjusting the security settings in Flash but nothing has worked, can someone help? 

Here is the ActionScript I used;

var rssLoader:URLLoader = new URLLoader();
var rssURL:URLRequest =
         new URLRequest(&quot;http://alaashaker.wordpress.com/feed/&quot;);
rssLoader.addEventListener(Event.COMPLETE, rssLoaded);
rssLoader.load(rssURL);

var rssXML:XML = new XML();
rssXML.ignoreWhitespace = true;

function rssLoaded(evt:Event):void {
	rssXML = XML(rssLoader.data);

	for(var item:String in rssXML.channel.item) {
		liLog.addItem(
                  {label: rssXML.channel.item[item].pubDate.substr(0, 16) +
				&quot;: &quot; + rssXML.channel.item[item].title } );
	}
}

function selectLog(evt:Event):void {
	var list:XMLList =
                rssXML.channel.item[evt.target.selectedIndex ].children();
	var item:XML;
	for(var i = 0; i&lt;list.length(); i++)
		if(list[i].name() == &quot;description&quot;)
		{ i++; break; }
	item = list[i].children()[0];

// This will display the short description ..
// The second uncommented line displays the whole post ..
// taLog.htmlText = rssXML.channel.item[evt.target.selectedIndex].description;
	taLog.htmlText = item.toString();
}
liLog.addEventListener(Event.CHANGE, selectLog);</description>
		<content:encoded><![CDATA[<p>Hi Alaa, thanks for the tutorial, unfortunately the RSS feed is not displaying in the text areas. I was however able to display the data in the output window in the first part of the tutorial. I tried adjusting the security settings in Flash but nothing has worked, can someone help? </p>
<p>Here is the ActionScript I used;</p>
<p>var rssLoader:URLLoader = new URLLoader();<br />
var rssURL:URLRequest =<br />
         new URLRequest(&#8220;http://alaashaker.wordpress.com/feed/&#8221;);<br />
rssLoader.addEventListener(Event.COMPLETE, rssLoaded);<br />
rssLoader.load(rssURL);</p>
<p>var rssXML:XML = new XML();<br />
rssXML.ignoreWhitespace = true;</p>
<p>function rssLoaded(evt:Event):void {<br />
	rssXML = XML(rssLoader.data);</p>
<p>	for(var item:String in rssXML.channel.item) {<br />
		liLog.addItem(<br />
                  {label: rssXML.channel.item[item].pubDate.substr(0, 16) +<br />
				&#8220;: &#8221; + rssXML.channel.item[item].title } );<br />
	}<br />
}</p>
<p>function selectLog(evt:Event):void {<br />
	var list:XMLList =<br />
                rssXML.channel.item[evt.target.selectedIndex ].children();<br />
	var item:XML;<br />
	for(var i = 0; i&lt;list.length(); i++)<br />
		if(list[i].name() == &quot;description&quot;)<br />
		{ i++; break; }<br />
	item = list[i].children()[0];</p>
<p>// This will display the short description ..<br />
// The second uncommented line displays the whole post ..<br />
// taLog.htmlText = rssXML.channel.item[evt.target.selectedIndex].description;<br />
	taLog.htmlText = item.toString();<br />
}<br />
liLog.addEventListener(Event.CHANGE, selectLog);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Marital Status: Engaged! by Montasser Shaker</title>
		<link>http://alaashaker.wordpress.com/2008/12/17/marital-status-engaged/#comment-535</link>
		<dc:creator>Montasser Shaker</dc:creator>
		<pubDate>Thu, 10 Dec 2009 23:03:41 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2008/12/17/marital-status-engaged/#comment-535</guid>
		<description>--------------- CONGRATULATIONS ---------------

Wish you all success in your life and marriage.
..... Waiting to see your family growing .....</description>
		<content:encoded><![CDATA[<p>&#8212;&#8212;&#8212;&#8212;&#8212; CONGRATULATIONS &#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Wish you all success in your life and marriage.<br />
&#8230;.. Waiting to see your family growing &#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your iPhone to your Laptop using a wireless ad hoc network [iPhone] by LISKLYMNSIB</title>
		<link>http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-534</link>
		<dc:creator>LISKLYMNSIB</dc:creator>
		<pubDate>Fri, 27 Nov 2009 05:25:26 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-534</guid>
		<description>I highly enjoyed reading this post, keep on creating such exciting stuff!</description>
		<content:encoded><![CDATA[<p>I highly enjoyed reading this post, keep on creating such exciting stuff!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build your own Flash RSS Reader [Tutorial: Flash ActionScript 3.0] by Some Usefull Links - Graphics &#38; Eyecandy &#124; TechEnclave</title>
		<link>http://alaashaker.wordpress.com/2008/09/09/build-your-own-flash-rss-reader-tutorial-flash-actionscript-30/#comment-533</link>
		<dc:creator>Some Usefull Links - Graphics &#38; Eyecandy &#124; TechEnclave</dc:creator>
		<pubDate>Thu, 26 Nov 2009 07:14:25 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2008/09/09/build-your-own-flash-rss-reader-flash-actionscript-30/#comment-533</guid>
		<description>[...] Creating a Weather Widget with XML and AS3 - The Tech Labs Build your own Flash RSS Reader [Tutorial: Flash ActionScript 3.0] AlaaShaker&#039;s Weblog yourminis :: developers :: documentation 30 Hand-picked Flash and Essential Actionscript 3.0 [...]</description>
		<content:encoded><![CDATA[<p>[...] Creating a Weather Widget with XML and AS3 &#8211; The Tech Labs Build your own Flash RSS Reader [Tutorial: Flash ActionScript 3.0] AlaaShaker&#39;s Weblog yourminis :: developers :: documentation 30 Hand-picked Flash and Essential Actionscript 3.0 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Build your own Flash RSS Reader [Tutorial: Flash ActionScript 3.0] by Gil Goldshlager</title>
		<link>http://alaashaker.wordpress.com/2008/09/09/build-your-own-flash-rss-reader-tutorial-flash-actionscript-30/#comment-532</link>
		<dc:creator>Gil Goldshlager</dc:creator>
		<pubDate>Fri, 20 Nov 2009 21:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2008/09/09/build-your-own-flash-rss-reader-flash-actionscript-30/#comment-532</guid>
		<description>Hey I will like to make a change and delete the liLog and use only the taLog
and have it automatically loaded without any need of choose an item from a select list.

How can I do it please?

Thanks and have a nice weekend! :)</description>
		<content:encoded><![CDATA[<p>Hey I will like to make a change and delete the liLog and use only the taLog<br />
and have it automatically loaded without any need of choose an item from a select list.</p>
<p>How can I do it please?</p>
<p>Thanks and have a nice weekend! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your iPhone to your Laptop using a wireless ad hoc network [iPhone] by Shabbir</title>
		<link>http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-531</link>
		<dc:creator>Shabbir</dc:creator>
		<pubDate>Wed, 18 Nov 2009 07:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-531</guid>
		<description>thx. it helped . God bless u . Jazak Allah Kheir</description>
		<content:encoded><![CDATA[<p>thx. it helped . God bless u . Jazak Allah Kheir</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Connecting your iPhone to your Laptop using a wireless ad hoc network [iPhone] by Shoaib</title>
		<link>http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-529</link>
		<dc:creator>Shoaib</dc:creator>
		<pubDate>Sat, 07 Nov 2009 12:52:45 +0000</pubDate>
		<guid isPermaLink="false">http://alaashaker.wordpress.com/2009/03/27/connecting-your-iphone-to-your-laptop-using-a-wireless-ad-hoc-network-iphone/#comment-529</guid>
		<description>Do I have to enable ICS on my DSL (LAN connection) or the wirless connection i create? Plz advise
Thx!</description>
		<content:encoded><![CDATA[<p>Do I have to enable ICS on my DSL (LAN connection) or the wirless connection i create? Plz advise<br />
Thx!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
