<?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: Parsing XHTML with E4X in AS3</title>
	<atom:link href="http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/</link>
	<description>Adobe, Flash, Flex, AIR, Technology</description>
	<lastBuildDate>Thu, 11 Mar 2010 21:18:15 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: oxid</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-19112</link>
		<dc:creator>oxid</dc:creator>
		<pubDate>Tue, 02 Feb 2010 10:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-19112</guid>
		<description>hello,

i was really happy finding this site but the solution presented here seems to not work on my case.

see, I&#039;d like to parse the html on this link: http://www.1club.fm/NowPlayMy1clubfm/thebeat4.html

but in every case the script gives back a parser error.

here is my code:

default xml namespace = new Namespace(&quot;http://www.w3.org/1999/xhtml&quot;);
XML.ignoreWhitespace = false;
XML.prettyPrinting = false;
XML.ignoreComments = true;
XML.ignoreProcessingInstructions = true;
var requester:URLRequest = new URLRequest(&quot;http://www.1club.fm/NowPlayMy1clubfm/thebeat4.html&quot;);
var loader:URLLoader = new URLLoader(requester);
loader.addEventListener(Event.COMPLETE,  loaded);
function loaded(e:Event):void{
	var xmlobj:XML = new XML(e.target.data);	
	trace(xmlobj.toString());
}

can you please help me?

thank you!</description>
		<content:encoded><![CDATA[<p>hello,</p>
<p>i was really happy finding this site but the solution presented here seems to not work on my case.</p>
<p>see, I&#039;d like to parse the html on this link: <a href="http://www.1club.fm/NowPlayMy1clubfm/thebeat4.html" rel="nofollow">http://www.1club.fm/NowPlayMy1clubfm/thebeat4.html</a></p>
<p>but in every case the script gives back a parser error.</p>
<p>here is my code:</p>
<p>default xml namespace = new Namespace(&#034;http://www.w3.org/1999/xhtml&#034;);<br />
XML.ignoreWhitespace = false;<br />
XML.prettyPrinting = false;<br />
XML.ignoreComments = true;<br />
XML.ignoreProcessingInstructions = true;<br />
var requester:URLRequest = new URLRequest(&#034;http://www.1club.fm/NowPlayMy1clubfm/thebeat4.html&#034;);<br />
var loader:URLLoader = new URLLoader(requester);<br />
loader.addEventListener(Event.COMPLETE,  loaded);<br />
function loaded(e:Event):void{<br />
	var xmlobj:XML = new XML(e.target.data);<br />
	trace(xmlobj.toString());<br />
}</p>
<p>can you please help me?</p>
<p>thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glidias</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-18185</link>
		<dc:creator>Glidias</dc:creator>
		<pubDate>Wed, 06 Jan 2010 06:37:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-18185</guid>
		<description>With ignoreWhitespace set to &quot;true&quot;, is there any way to skip iterating through  null XML nodes, or perhaps this is simply unavoidable? Iteration time is doubled and I wish this could be avoided. 

Also, in your Gaia Flash Framework, you forgot to strip the namespace off the root node as well for innerHTML.</description>
		<content:encoded><![CDATA[<p>With ignoreWhitespace set to &#034;true&#034;, is there any way to skip iterating through  null XML nodes, or perhaps this is simply unavoidable? Iteration time is doubled and I wish this could be avoided. </p>
<p>Also, in your Gaia Flash Framework, you forgot to strip the namespace off the root node as well for innerHTML.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Goran</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-15644</link>
		<dc:creator>Goran</dc:creator>
		<pubDate>Thu, 15 Oct 2009 07:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-15644</guid>
		<description>Thanks for this, was looking for something like this. I tried to implement it, but still can&#039;t get it right. Is there any chance you can leave a simple example for download so I can test it and learn where I am getting it wrong?</description>
		<content:encoded><![CDATA[<p>Thanks for this, was looking for something like this. I tried to implement it, but still can&#039;t get it right. Is there any chance you can leave a simple example for download so I can test it and learn where I am getting it wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bookmarks about Xhtml</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-7256</link>
		<dc:creator>Bookmarks about Xhtml</dc:creator>
		<pubDate>Tue, 30 Dec 2008 23:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-7256</guid>
		<description>[...] - bookmarked by 2 members originally found by Dulcinea on 2008-11-30  Parsing XHTML with E4X in AS3  http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/ - bookmarked by 1 members [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; bookmarked by 2 members originally found by Dulcinea on 2008-11-30  Parsing XHTML with E4X in AS3  <a href="http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/" rel="nofollow">http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/</a> &#8211; bookmarked by 1 members [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: danthepizzaman</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-6700</link>
		<dc:creator>danthepizzaman</dc:creator>
		<pubDate>Mon, 08 Dec 2008 15:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-6700</guid>
		<description>Thanks for this, exactly what i was looking for!</description>
		<content:encoded><![CDATA[<p>Thanks for this, exactly what i was looking for!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Jackson</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-6228</link>
		<dc:creator>Joe Jackson</dc:creator>
		<pubDate>Fri, 21 Nov 2008 17:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-6228</guid>
		<description>For some reason the prettyPrinting is still creating the:

This is
bold
text

scenario... But I use &quot;custom&quot; nodes rather than &lt;b&gt; for bold. Could this be the case? So instead of &lt;b&gt;bold&lt;/b&gt; I use bold</description>
		<content:encoded><![CDATA[<p>For some reason the prettyPrinting is still creating the:</p>
<p>This is<br />
bold<br />
text</p>
<p>scenario&#8230; But I use &#034;custom&#034; nodes rather than <b> for bold. Could this be the case? So instead of </b><b>bold</b> I use bold</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julien</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-5027</link>
		<dc:creator>Julien</dc:creator>
		<pubDate>Sun, 19 Oct 2008 17:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-5027</guid>
		<description>HAHA! So nice! Thanks for this. :)</description>
		<content:encoded><![CDATA[<p>HAHA! So nice! Thanks for this. <img src='http://www.stevensacks.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Szabesz</title>
		<link>http://www.stevensacks.net/2008/07/02/parsing-xhtml-with-e4x-in-as3/comment-page-1/#comment-4888</link>
		<dc:creator>Szabesz</dc:creator>
		<pubDate>Wed, 15 Oct 2008 21:50:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.stevensacks.net/?p=119#comment-4888</guid>
		<description>Thanx for sharing!</description>
		<content:encoded><![CDATA[<p>Thanx for sharing!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
