<?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.0 Basics part 3 -loading xml data.</title>
	<atom:link href="http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 04:58:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: lingdoo</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-5695</link>
		<dc:creator>lingdoo</dc:creator>
		<pubDate>Thu, 15 Apr 2010 06:34:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-5695</guid>
		<description>I think is very good!!  ~_~

  data or date .  I think I know it!!!</description>
		<content:encoded><![CDATA[<p>I think is very good!!  ~_~</p>
<p>  data or date .  I think I know it!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Load XML Actionscript 3 &#124; philsinatra</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-3458</link>
		<dc:creator>Load XML Actionscript 3 &#124; philsinatra</dc:creator>
		<pubDate>Tue, 19 Jan 2010 19:47:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-3458</guid>
		<description>[...] http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/   Comments (0) [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/" rel="nofollow">http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/</a>   Comments (0) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ActionScript 3.0 Basics part 4 - news reader component. &#124; massiveProCreation Blog</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-3143</link>
		<dc:creator>ActionScript 3.0 Basics part 4 - news reader component. &#124; massiveProCreation Blog</dc:creator>
		<pubDate>Tue, 22 Dec 2009 12:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-3143</guid>
		<description>[...] ( if you are not fallowing along I recomend to read the previous tutorials: part 1, part 2 , part 3). Now it&#8217;s time to combine this knowlage in one project. We will make simple animated news [...]</description>
		<content:encoded><![CDATA[<p>[...] ( if you are not fallowing along I recomend to read the previous tutorials: part 1, part 2 , part 3). Now it&#8217;s time to combine this knowlage in one project. We will make simple animated news [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mrugesh</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-2384</link>
		<dc:creator>Mrugesh</dc:creator>
		<pubDate>Wed, 04 Nov 2009 18:28:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-2384</guid>
		<description>var xml:XML;


//---------------------------------------------------------------------
Show_XML.addEventListener(MouseEvent.CLICK,action);


//---------------------------------------------


function action(event:MouseEvent):void
{
	readXML();	
	
}
//function showdata(event:MouseEvent):void
//{
//	action();
//	
//}

function readXML():void
{
	var loader:URLLoader=new URLLoader(new URLRequest(&quot;news.xml&quot;));	
	loader.addEventListener(Event.COMPLETE,xmlLoader);
}
function xmlLoader(event:Event):void
{
	xml=new XML(event.target.data);
	trace(xml.news[0].title1);
	trace(xml.news[0].@date);
	xml.news[0].@date=&quot;08-04-2009&quot;;
	trace(xml.news[0].@date);
}</description>
		<content:encoded><![CDATA[<p>var xml:XML;</p>
<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Show_XML.addEventListener(MouseEvent.CLICK,action);</p>
<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>function action(event:MouseEvent):void<br />
{<br />
	readXML();	</p>
<p>}<br />
//function showdata(event:MouseEvent):void<br />
//{<br />
//	action();<br />
//<br />
//}</p>
<p>function readXML():void<br />
{<br />
	var loader:URLLoader=new URLLoader(new URLRequest(&#8220;news.xml&#8221;));<br />
	loader.addEventListener(Event.COMPLETE,xmlLoader);<br />
}<br />
function xmlLoader(event:Event):void<br />
{<br />
	xml=new XML(event.target.data);<br />
	trace(xml.news[0].title1);<br />
	trace(xml.news[0].@date);<br />
	xml.news[0].@date=&#8221;08-04-2009&#8243;;<br />
	trace(xml.news[0].@date);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Flash on Focus &#187; Dành cho những bạn mới học ActionScript 3</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-2046</link>
		<dc:creator>Flash on Focus &#187; Dành cho những bạn mới học ActionScript 3</dc:creator>
		<pubDate>Sat, 17 Oct 2009 05:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-2046</guid>
		<description>[...] 3.0 Basics part 1.  ActionScript 3.0 Basics part 2. – Simple Menu, using tweener Tutorial.  ActionScript 3.0 Basics part 3 -loading xml data.  ActionScript 3.0 Basics part 4 – news reader [...]</description>
		<content:encoded><![CDATA[<p>[...] 3.0 Basics part 1.  ActionScript 3.0 Basics part 2. – Simple Menu, using tweener Tutorial.  ActionScript 3.0 Basics part 3 -loading xml data.  ActionScript 3.0 Basics part 4 – news reader [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nhhson</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-1793</link>
		<dc:creator>nhhson</dc:creator>
		<pubDate>Wed, 30 Sep 2009 03:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-1793</guid>
		<description>Nếu mình sử dụng link từ file xml trong as3.0 thi lam sao ban!?? thanks!</description>
		<content:encoded><![CDATA[<p>Nếu mình sử dụng link từ file xml trong as3.0 thi lam sao ban!?? thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dành cho những bạn mới học ActionScript 3 &#171; Linhdoha&#8217;s Blog</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-923</link>
		<dc:creator>Dành cho những bạn mới học ActionScript 3 &#171; Linhdoha&#8217;s Blog</dc:creator>
		<pubDate>Tue, 18 Aug 2009 02:37:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-923</guid>
		<description>[...] 3.0 Basics part 1.  ActionScript 3.0 Basics part 2. – Simple Menu, using tweener Tutorial.  ActionScript 3.0 Basics part 3 -loading xml data.  ActionScript 3.0 Basics part 4 – news reader [...]</description>
		<content:encoded><![CDATA[<p>[...] 3.0 Basics part 1.  ActionScript 3.0 Basics part 2. – Simple Menu, using tweener Tutorial.  ActionScript 3.0 Basics part 3 -loading xml data.  ActionScript 3.0 Basics part 4 – news reader [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kuba</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-255</link>
		<dc:creator>Kuba</dc:creator>
		<pubDate>Mon, 08 Jun 2009 07:19:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-255</guid>
		<description>yeap you are right ;) Thank you for the corection, chears m8...</description>
		<content:encoded><![CDATA[<p>yeap you are right ;) Thank you for the corection, chears m8&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian vG</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-254</link>
		<dc:creator>Adrian vG</dc:creator>
		<pubDate>Mon, 08 Jun 2009 06:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-254</guid>
		<description>trace(xml.news[0].@data);
//output = 07-04-2009

I think it should say @date ;)

Thanks for the post, I always forget how this works.</description>
		<content:encoded><![CDATA[<p>trace(xml.news[0].@data);<br />
//output = 07-04-2009</p>
<p>I think it should say @date ;)</p>
<p>Thanks for the post, I always forget how this works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: XML Loader Class 3.0 - Freebie! &#124; massiveProCreation Blog</title>
		<link>http://www.blog.mpcreation.pl/actionscript-30-basics-part-3-loading-xml-data/comment-page-1/#comment-86</link>
		<dc:creator>XML Loader Class 3.0 - Freebie! &#124; massiveProCreation Blog</dc:creator>
		<pubDate>Wed, 15 Apr 2009 10:21:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.blog.mpcreation.pl/?p=570#comment-86</guid>
		<description>[...] free XML Loader Class by Clemente Gomez. You can get the source code here.  Recently I have done a tutorial on loading xml data, it will help you to understand this class or you can try to make your own XML [...]</description>
		<content:encoded><![CDATA[<p>[...] free XML Loader Class by Clemente Gomez. You can get the source code here.  Recently I have done a tutorial on loading xml data, it will help you to understand this class or you can try to make your own XML [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

