<?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: FLASH CS3 TUTORIAL – AS3 How to load XML data and parse it to a List Component</title>
	<atom:link href="http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/</link>
	<description>A Blog covering Air, Flash, Flex, Illustrator and Photoshop</description>
	<lastBuildDate>Sun, 11 Sep 2011 02:17: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: Fighterlegend</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-542</link>
		<dc:creator>Fighterlegend</dc:creator>
		<pubDate>Sat, 08 Aug 2009 21:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-542</guid>
		<description>Hello, this has helped me.

But not on this part..

my_lst.addItem({label:userTitle, data:userTitle});

I want the data to be what’s inside the news.

Well, actually what I’m using is User.. It’s for a little app I’m making..

I have this code:

function announceLabel(e:ListEvent):void {
var list:List = e.target as List;
var item:Object = e.userTitle;
trace(”Label: ” + item.label);
trace(”Label displayed: ” + list.itemToLabel(item));
infoBox.text = list.itemToLabel(item);
infoBox.appendText(”\n”);
infoBox.appendText(item.label);
}

to display the data into a text box, but I don’t have any data.

Help?</description>
		<content:encoded><![CDATA[<p>Hello, this has helped me.</p>
<p>But not on this part..</p>
<p>my_lst.addItem({label:userTitle, data:userTitle});</p>
<p>I want the data to be what’s inside the news.</p>
<p>Well, actually what I’m using is User.. It’s for a little app I’m making..</p>
<p>I have this code:</p>
<p>function announceLabel(e:ListEvent):void {<br />
var list:List = e.target as List;<br />
var item:Object = e.userTitle;<br />
trace(”Label: ” + item.label);<br />
trace(”Label displayed: ” + list.itemToLabel(item));<br />
infoBox.text = list.itemToLabel(item);<br />
infoBox.appendText(”\n”);<br />
infoBox.appendText(item.label);<br />
}</p>
<p>to display the data into a text box, but I don’t have any data.</p>
<p>Help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: R.K.</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-541</link>
		<dc:creator>R.K.</dc:creator>
		<pubDate>Mon, 01 Jun 2009 16:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-541</guid>
		<description>to Robert:
my_lst is a component instance name</description>
		<content:encoded><![CDATA[<p>to Robert:<br />
my_lst is a component instance name</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-540</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 18 Mar 2009 15:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-540</guid>
		<description>Thanks for the tutorial.  I get this error and a white screen upon testing

1120: Access of undefined property my_lst.

any ideas?</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial.  I get this error and a white screen upon testing</p>
<p>1120: Access of undefined property my_lst.</p>
<p>any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-539</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 28 Jan 2009 20:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-539</guid>
		<description>I get the following error when trying to run the above code:

TypeError: Error #1090: XML parser failure: element is malformed.
	at xml_list_fla::MainTimeline/LoadXML()
	at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
	at flash.events::EventDispatcher/dispatchEvent()
	at flash.net::URLLoader/flash.net:URLLoader::onComplete()

Please help!!  Im doing an assignment in Flash and really stuck now!</description>
		<content:encoded><![CDATA[<p>I get the following error when trying to run the above code:</p>
<p>TypeError: Error #1090: XML parser failure: element is malformed.<br />
	at xml_list_fla::MainTimeline/LoadXML()<br />
	at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()<br />
	at flash.events::EventDispatcher/dispatchEvent()<br />
	at flash.net::URLLoader/flash.net:URLLoader::onComplete()</p>
<p>Please help!!  Im doing an assignment in Flash and really stuck now!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PetersV</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-538</link>
		<dc:creator>PetersV</dc:creator>
		<pubDate>Thu, 14 Aug 2008 23:53:23 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-538</guid>
		<description>Does anyone know how what script to use to modify an existing MP3 code, so that the file path of the MP3 being loaded is read from an XML document?</description>
		<content:encoded><![CDATA[<p>Does anyone know how what script to use to modify an existing MP3 code, so that the file path of the MP3 being loaded is read from an XML document?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FayeC</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-537</link>
		<dc:creator>FayeC</dc:creator>
		<pubDate>Fri, 27 Jun 2008 19:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-537</guid>
		<description>Oi Carlos,

Tambem gostaria de ver como expandir o codigo pra incluir a descricao, data, etc para cada item.
Otimo tutorial.

FayeC</description>
		<content:encoded><![CDATA[<p>Oi Carlos,</p>
<p>Tambem gostaria de ver como expandir o codigo pra incluir a descricao, data, etc para cada item.<br />
Otimo tutorial.</p>
<p>FayeC</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: avn.rocky</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-536</link>
		<dc:creator>avn.rocky</dc:creator>
		<pubDate>Wed, 28 May 2008 07:01:13 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-536</guid>
		<description>hi Joe..

That&#039;s really fantastic..
please also add the tutorial for displaying the news contents (description etc.) on clicking the components newslist

best wishes
avn.rocky</description>
		<content:encoded><![CDATA[<p>hi Joe..</p>
<p>That&#8217;s really fantastic..<br />
please also add the tutorial for displaying the news contents (description etc.) on clicking the components newslist</p>
<p>best wishes<br />
avn.rocky</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos Pinho</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-535</link>
		<dc:creator>Carlos Pinho</dc:creator>
		<pubDate>Sat, 10 May 2008 14:38:36 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-535</guid>
		<description>Hi Joe,

Could you pls re check now? Sometimes when you try to copy from the blog, due to the format, the code revert some errors. try to copy all the code and to past it in plain text.
But i think the problem is on the xmlLoader.load(new URLRequest(&quot;news.xml&quot;));

Maybe you have only one &quot;, i/o &quot;&quot;</description>
		<content:encoded><![CDATA[<p>Hi Joe,</p>
<p>Could you pls re check now? Sometimes when you try to copy from the blog, due to the format, the code revert some errors. try to copy all the code and to past it in plain text.<br />
But i think the problem is on the xmlLoader.load(new URLRequest(&#8220;news.xml&#8221;));</p>
<p>Maybe you have only one &#8220;, i/o &#8220;&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-534</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Fri, 09 May 2008 23:23:14 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-534</guid>
		<description>When i copy your code exactly, i get the following errors.

TypeError: Error #1085: The element type &quot;news&quot; must be terminated by the matching end-tag &quot;&quot;.
	at Xml_fla::MainTimeline/LoadXML()
	at flash.events::EventDispatcher/dispatchEventFunction()
	at flash.events::EventDispatcher/dispatchEvent()
	at flash.net::URLLoader/onComplete()</description>
		<content:encoded><![CDATA[<p>When i copy your code exactly, i get the following errors.</p>
<p>TypeError: Error #1085: The element type &#8220;news&#8221; must be terminated by the matching end-tag &#8220;&#8221;.<br />
	at Xml_fla::MainTimeline/LoadXML()<br />
	at flash.events::EventDispatcher/dispatchEventFunction()<br />
	at flash.events::EventDispatcher/dispatchEvent()<br />
	at flash.net::URLLoader/onComplete()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcos</title>
		<link>http://www.flashenabledblog.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/comment-page-1/#comment-533</link>
		<dc:creator>Marcos</dc:creator>
		<pubDate>Thu, 26 Jul 2007 22:48:16 +0000</pubDate>
		<guid isPermaLink="false">http://flashenabled.wordpress.com/2007/07/24/flash-cs3-tutorial-%e2%80%93-as3-how-to-load-xml-data-and-parse-it-to-a-list-component/#comment-533</guid>
		<description>Olá Carlos. Traduzi e coloquei no meu blog também, gostei bastante, ficou simples e muito funcional. Cooquei no meu uma introdução ao Flex, vou trazduir para o ingles hoje e mando para vocês.

Att.</description>
		<content:encoded><![CDATA[<p>Olá Carlos. Traduzi e coloquei no meu blog também, gostei bastante, ficou simples e muito funcional. Cooquei no meu uma introdução ao Flex, vou trazduir para o ingles hoje e mando para vocês.</p>
<p>Att.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

