<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Actionscript Classes &#187; XML</title>
	<atom:link href="http://www.actionscriptclasses.com/category/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.actionscriptclasses.com</link>
	<description>Actionscript Class File Repository</description>
	<lastBuildDate>Sat, 19 Jun 2010 18:02:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>LoaderMax &#8211; Smart AS3 Loading</title>
		<link>http://www.actionscriptclasses.com/2010/loadermax/</link>
		<comments>http://www.actionscriptclasses.com/2010/loadermax/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 18:01:02 +0000</pubDate>
		<dc:creator>greensock</dc:creator>
				<category><![CDATA[AS 3]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[Loader]]></category>
		<category><![CDATA[MovieClipLoader]]></category>
		<category><![CDATA[Sound]]></category>
		<category><![CDATA[Video / NetStream / NetConnection]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[LoaderMax]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[preloader]]></category>
		<category><![CDATA[swf]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/?p=263</guid>
		<description><![CDATA[<p>LoaderMax is a new AS3 loading system that does much more than just get swf, mp3, css, video, image, text, binary, and xml files into your Flash application. It eats files for dinner, burps, and then asks for 2nds. And 3rds. Yet it's surprisingly thin. In fact, it can be half the size of most other loading systems even though it delivers a bunch of unique capabilities, some of which you probably never knew you needed but won't want to live without. Here are a few of the noteworthy features:</p>

<a href="http://www.LoaderMax.com">http://www.LoaderMax.com</a>]]></description>
			<content:encoded><![CDATA[<p>LoaderMax is a new AS3 loading system that does much more than just get swf, mp3, css, video, image, text, binary, and xml files into your Flash application. It eats files for dinner, burps, and then asks for 2nds. And 3rds. Yet it&#8217;s surprisingly thin. In fact, it can be half the size of most other loading systems even though it delivers a bunch of unique capabilities, some of which you probably never knew you needed but won&#8217;t want to live without. Here are a few of the noteworthy features:</p>
<p><a href="http://www.LoaderMax.com">http://www.LoaderMax.com</a></p>
<ul>
<li><strong> Integration of loaders inside subloaded swfs</strong> &#8211; with most other systems, if you subload a swf, the loader will only concern itself with the swf file&#8217;s bytes but what if that swf must subload other content like XML, images, and/or other swf files before it should be considered fully loaded? LoaderMax can elegantly handle the sub-subloads as deep as they go. You can link any loader and/or LoaderMax with a swf&#8217;s root (using the requireWithRoot vars property) so that when you subload it into another Flash application, the parent SWFLoader automatically factors the nested loaders into its overall loading progress! It won&#8217;t dispatch its COMPLETE event until they have finished as well. </li>
<li><strong> Automatic parsing of LoaderMax-related nodes inside XML</strong> &#8211; The XMLLoader class automatically looks for LoaderMax-related nodes like &lt;LoaderMax&gt;, &lt;ImageLoader&gt;, &lt;SWFLoader&gt;, &lt;XMLLoader&gt;, &lt;VideoLoader&gt;, &lt;DataLoader&gt;, &lt;CSSLoader&gt;, &lt;MP3Loader&gt;, etc. in XML files that it loads, and if any are found it will create the necessary instances and then begin loading the ones that had a load=&#8221;true&#8221; attribute, automatically integrating their progress into the XMLLoader&#8217;s overall progress and it won&#8217;t dispatch a COMPLETE event until the XML-driven loaders have finished as well. See XMLLoader&#8217;s <a href="/as/docs/_loadermax.html" target="_blank">ASDocs</a> for details.</li>
<li><strong> Tight file size</strong> &#8211; Many other systems are 16-24k+ even if you&#8217;re just loading text, but LoaderMax can be as little as <strong>7k</strong> (depending on which loader types you use).</li>
<li><strong> Define an alternateURL for any loader</strong> &#8211; If the original url fails to load, it will automatically switch to the alternateURL and try again.</li>
<li><strong> A common set of properties and methods among all loaders</strong> &#8211; All loader types (XMLLoader, SWFLoader, ImageLoader, MP3Loader, CSSLoader, VideoLoader, LoaderMax, etc.) share common properties like: content, name, status, loadTime, paused, bytesLoaded, bytesTotal, and progress as well as methods like: load(), pause(), resume(), prioritize(), unload(), cancel(), auditSize() and dispose() delivering a touch of polymorphism sweetness.</li>
<li><strong> Nest LoaderMax instances inside other LoaderMax instances as deeply as you want.</strong> &#8211; A LoaderMax instance is basically a queue of loaders which makes it simple to control them as a whole and get the overall progress, bytesLoaded, and/or bytesTotal. You can put a queue into another &#8211; group and nest them however you want. This makes complex queues simple. Need to know when the first 3 loaders have finished loading inside a 10-loader queue? Just put those 3 into their own LoaderMax that has an onComplete and nest that LoaderMax inside your main LoaderMax queue. </li>
<li><strong> Set a width/height for an ImageLoader, SWFLoader, or VideoLoader and when it loads, the image/swf/video will automatically scale to fit</strong> using any of the following scaleModes: &#8220;stretch&#8221;, &#8220;proportionalInside&#8221;, &#8220;proportionalOutside&#8221;, &#8220;widthOnly&#8221;, or &#8220;heightOnly&#8221;.</li>
<li><strong> Conveniences like auto smoothing of images, centering their registration point, noCache, setting initial x, y, scaleX, scaleY, rotation, alpha, and blendMode properties, optional autoPlay for mp3s, swfs, and videos, and more.</strong></li>
<li><strong> Works around common Flash hassles/bugs</strong> &#8211; LoaderMax implements workarounds for things like garbage collection headaches with subloaded swfs, images, and NetStreams as well as other problems like the recently discovered <a href="http://kb2.adobe.com/cps/838/cpsid_83812.html" target="_blank">issues with subloading swfs that use TLF</a>.</li>
<li><strong> Find loaders and content by name or url</strong> &#8211; Every loader has a name property which you can use to uniquely identify it. Feed a name or URL to the static LoaderMax.getLoader() or LoaderMax.getContent() methods to quickly get the associated loader or content.</li>
<li><strong> A single loader can belong to multiple LoaderMax instances</strong></li>
<li><strong> Accurate progress reporting</strong> &#8211; For maximum performance, set an estimatedBytes for each loader or allow LoaderMax&#8217;s auditSize feature to automatically preload just enough of each child loader&#8217;s content to determine its bytesTotal, making progress reporting on large queues very accurate.</li>
<li><strong> prioritize() a loader anytime</strong> &#8211; Kick an object to the top of all LoaderMax queues to which it belongs, immediately supplanting the top spot in each one. </li>
<li><strong> A robust event system</strong> &#8211; events bubble up through LoaderMax hierarchies and carry a consistent target for easy identification</li>
<li><strong> Set up multiple event listeners in one line</strong> &#8211; Add listeners like onComplete, onProgress, onError, etc. via the constructor like new LoaderMax({name:&#8221;mainQueue&#8221;, onComplete:completeHandler, onProgress:progressHandler, onError:errorHandler});</li>
<li><strong> maxConnections</strong> &#8211; Set the maximum number of simultaneous connections for each LoaderMax instance (default is 2). This can speed up overall loading times.</li>
<li><strong> pause()/resume()</strong> &#8211; no queue loading solution would be complete without the ability to pause()/resume() anytime.</li>
<li><strong> Flex friendly </strong> &#8211; Simply change the LoaderMax.contentDisplayClass to FlexContentDisplay and then ImageLoaders, SWFLoaders, and VideoLoaders will return content wrapped in a UIComponent.</li>
</ul>
<p><a href="http://www.LoaderMax.com">http://www.LoaderMax.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2010/loadermax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XMLConduit</title>
		<link>http://www.actionscriptclasses.com/2007/xmlconduit/</link>
		<comments>http://www.actionscriptclasses.com/2007/xmlconduit/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 01:03:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/xmlconduit/</guid>
		<description><![CDATA[From the site:
Here is a simple class that allows you to use POST and GET to return XML data from a URL (budget webservice). It works really well, you can just extend it by adding your own required methods, or you could set it up with one generic method that supplies the event type, etc. [...]]]></description>
			<content:encoded><![CDATA[<p>From the site:<br />
<blockquote class="webkit-indent-blockquote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 40px; border-width: initial; border-color: initial; border-style: none; padding: 0px"><span class="Apple-style-span" style="color: #645f5f; font-family: georgia; font-size: 13px">Here is a simple class that allows you to use POST and GET to return XML data from a URL (budget webservice). It works really well, you can just extend it by adding your own required methods, or you could set it up with one generic method that supplies the event type, etc. and you could send it an object with properties instead of specific arguments (so you could loop through and inspect them).</span>Â Â </p></blockquote>
<p><a href="http://www.ericd.net/2007/11/as2-class-xmlconduit.html" title="XMLConduit">http://www.ericd.net/2007/11/as2-class-xmlconduit.htmlÂ </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/xmlconduit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LoadXML</title>
		<link>http://www.actionscriptclasses.com/2007/loadxml/</link>
		<comments>http://www.actionscriptclasses.com/2007/loadxml/#comments</comments>
		<pubDate>Tue, 05 Jun 2007 19:53:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 3]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/loadxml/</guid>
		<description><![CDATA[XML loader for AS 3
http://www.mediareason.com/blog/?p=20
]]></description>
			<content:encoded><![CDATA[<p>XML loader for AS 3<br />
<a title="XML Loader" href="http://www.mediareason.com/blog/?p=20">http://www.mediareason.com/blog/?p=20</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/loadxml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xml search class</title>
		<link>http://www.actionscriptclasses.com/2007/xml-search-class/</link>
		<comments>http://www.actionscriptclasses.com/2007/xml-search-class/#comments</comments>
		<pubDate>Tue, 10 Apr 2007 21:37:53 +0000</pubDate>
		<dc:creator>maxgarfinkel</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/xml-search-class/</guid>
		<description><![CDATA[A neat little class that allows you to search an already loaded xml file. You can search for attributes or node data and you can search for the first match only or you can search recursivly.
http://blog.maxgarfinkel.com/archives/8
]]></description>
			<content:encoded><![CDATA[<p>A neat little class that allows you to search an already loaded xml file. You can search for attributes or node data and you can search for the first match only or you can search recursivly.</p>
<p><a href='http://blog.maxgarfinkel.com/archives/8'>http://blog.maxgarfinkel.com/archives/8</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/xml-search-class/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>XMLParser</title>
		<link>http://www.actionscriptclasses.com/2007/httpbloggreensockcomcat3/</link>
		<comments>http://www.actionscriptclasses.com/2007/httpbloggreensockcomcat3/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 04:29:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/httpbloggreensockcomcat3/</guid>
		<description><![CDATA[From the site:
This class provides an easy way to load and/or send an XML file and parse the data into a format that&#8217;s simple to work with. Every node becomes an array with the same name. All attributes are also easily accessible because they become properties with the same name.
]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>This class provides an easy way to load and/or send an XML file and parse the data into a format that&#8217;s simple to work with. Every node becomes an array with the same name. All attributes are also easily accessible because they become properties with the same name.</p></blockquote>
<p><a href="http://blog.greensock.com/?cat=3 title="XMLParser">http://blog.greensock.com/?cat=3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/httpbloggreensockcomcat3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XMLHightlighter</title>
		<link>http://www.actionscriptclasses.com/2006/xmlhightlighter/</link>
		<comments>http://www.actionscriptclasses.com/2006/xmlhightlighter/#comments</comments>
		<pubDate>Sat, 16 Dec 2006 04:46:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/xmlhightlighter/</guid>
		<description><![CDATA[Use the methods and properties of the XMLHighlighter class to generate the html code to generate color highlighted pretty printed XML.
http://www.shockwave-india.com/blog/actionscript2/?asfile=XMLHighlighter.as]]></description>
			<content:encoded><![CDATA[<p>Use the methods and properties of the XMLHighlighter class to generate the html code to generate color highlighted pretty printed XML.</p>
<p><a href="http://shockwave-india.com/blog/?archive=2004_07_01_archive.xml" title="XMLHighlighter">http://www.shockwave-india.com/blog/actionscript2/?asfile=XMLHighlighter.as<http://shockwave-india.com/blog/?archive=2004_07_01_archive.xml</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/xmlhightlighter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XML2Object</title>
		<link>http://www.actionscriptclasses.com/2006/xml2object/</link>
		<comments>http://www.actionscriptclasses.com/2006/xml2object/#comments</comments>
		<pubDate>Sun, 12 Nov 2006 12:46:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/xml2object/</guid>
		<description><![CDATA[Updated version of Alessandro Crugnola&#8217;s XML2Object class found here.
http://www.sillydomainname.com/2006/05/22/actionscript-util-class-xml2object/Â 
]]></description>
			<content:encoded><![CDATA[<p>Updated version of Alessandro Crugnola&#8217;s XML2Object class found <a title="XML2Object" href="http://www.sephiroth.it/file_detail.php?pageNum_comments=70&#038;id=129">here</a>.</p>
<p><a title="XML2Object" href="http://www.sillydomainname.com/2006/05/22/actionscript-util-class-xml2object/">http://www.sillydomainname.com/2006/05/22/actionscript-util-class-xml2object/Â </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/xml2object/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>MXCService</title>
		<link>http://www.actionscriptclasses.com/2006/mxcservice/</link>
		<comments>http://www.actionscriptclasses.com/2006/mxcservice/#comments</comments>
		<pubDate>Sun, 12 Nov 2006 12:22:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/mxcservice/</guid>
		<description><![CDATA[Send/recieve queries to the mxcomm php handler.
Â http://www.meychi.com/source/actionscript/classes/MXCService.as
]]></description>
			<content:encoded><![CDATA[<p>Send/recieve queries to the mxcomm php handler.</p>
<p><a title="MXCService" href="http://www.meychi.com/source/actionscript/classes/MXCService.as">Â http://www.meychi.com/source/actionscript/classes/MXCService.as</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/mxcservice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FeedParser</title>
		<link>http://www.actionscriptclasses.com/2006/feedparser/</link>
		<comments>http://www.actionscriptclasses.com/2006/feedparser/#comments</comments>
		<pubDate>Sun, 12 Nov 2006 12:01:42 +0000</pubDate>
		<dc:creator>flashape</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/feedparser/</guid>
		<description><![CDATA[Parses and validates an RSS Feed.
http://www.meychi.com/source/actionscript/classes/FeedParser.asÂ 
]]></description>
			<content:encoded><![CDATA[<p>Parses and validates an RSS Feed.</p>
<p><a title="FeedParser" href="http://www.meychi.com/source/actionscript/classes/FeedParser.as">http://www.meychi.com/source/actionscript/classes/FeedParser.asÂ </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/feedparser/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XMLLoader</title>
		<link>http://www.actionscriptclasses.com/2006/xmlloader/</link>
		<comments>http://www.actionscriptclasses.com/2006/xmlloader/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 16:50:02 +0000</pubDate>
		<dc:creator>flashape</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/xmlloader/</guid>
		<description><![CDATA[XML loading class that resolves scope issues.
http://www.createage.com/blog/?p=104Â 
]]></description>
			<content:encoded><![CDATA[<p>XML loading class that resolves scope issues.</p>
<p><a title="XMLLoader class" href="http://www.createage.com/blog/?p=104 ">http://www.createage.com/blog/?p=104Â </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/xmlloader/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
