<?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; MovieClipLoader</title>
	<atom:link href="http://www.actionscriptclasses.com/category/moviecliploader/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>QueueLoader &#8211; AS2</title>
		<link>http://www.actionscriptclasses.com/2008/queueloader-as2/</link>
		<comments>http://www.actionscriptclasses.com/2008/queueloader-as2/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 19:03:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Loader]]></category>
		<category><![CDATA[MovieClipLoader]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/?p=225</guid>
		<description><![CDATA[From the site:
I&#8217;ve written a helper class for loading and monitoring resources which is based upon an AS3 library called Queueloader located at Google Code.  My version is written in AS2 and has the following features:
Individual monitoring
Overall queue monitoring
Image loading
SWF loading
MP3 loading
http://fboyle.com/blog/?p=17
]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>I&#8217;ve written a helper class for loading and monitoring resources which is based upon an AS3 library called Queueloader located at Google Code.  My version is written in AS2 and has the following features:</p>
<p>Individual monitoring<br />
Overall queue monitoring<br />
Image loading<br />
SWF loading<br />
MP3 loading</p></blockquote>
<p><a href="http://fboyle.com/blog/?p=17" title="QueueLoader AS2">http://fboyle.com/blog/?p=17</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2008/queueloader-as2/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>QueueLoader AS3</title>
		<link>http://www.actionscriptclasses.com/2007/queueloader-as3/</link>
		<comments>http://www.actionscriptclasses.com/2007/queueloader-as3/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 18:49:29 +0000</pubDate>
		<dc:creator>djdonovan</dc:creator>
				<category><![CDATA[AS 3]]></category>
		<category><![CDATA[Loader]]></category>
		<category><![CDATA[MovieClipLoader]]></category>
		<category><![CDATA[Sound]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/queueloader-as3/</guid>
		<description><![CDATA[QueueLoader is a sequential external asset loader with item and queue progress monitoring. Currently loads Images, Swf, and MP3 files.
http://blog.hydrotik.com/category/queueloader/
]]></description>
			<content:encoded><![CDATA[<p>QueueLoader is a sequential external asset loader with item and queue progress monitoring. Currently loads Images, Swf, and MP3 files.</p>
<p>http://blog.hydrotik.com/category/queueloader/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/queueloader-as3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PreloadAssetManager</title>
		<link>http://www.actionscriptclasses.com/2007/preloadassetmanager/</link>
		<comments>http://www.actionscriptclasses.com/2007/preloadassetmanager/#comments</comments>
		<pubDate>Fri, 23 Mar 2007 04:25:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[MovieClipLoader]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/preloadassetmanager/</guid>
		<description><![CDATA[From the site:
Provides an easy way to invisibly preload SWFs, FLVs, or images and optionally trigger a callback function when preloading has finished. It also provides _width and _height information for all successfully preloaded SWFs or images, and duration information for FLVs (assuming they were encoded properly and have MetaData). 
http://blog.greensock.com/?p=7
]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>Provides an easy way to invisibly preload SWFs, FLVs, or images and optionally trigger a callback function when preloading has finished. It also provides _width and _height information for all successfully preloaded SWFs or images, and duration information for FLVs (assuming they were encoded properly and have MetaData). </p></blockquote>
<p><a href="http://blog.greensock.com/?p=7" title="PreloadAssetManager">http://blog.greensock.com/?p=7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/preloadassetmanager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LoadingQueue</title>
		<link>http://www.actionscriptclasses.com/2007/loadingqueue/</link>
		<comments>http://www.actionscriptclasses.com/2007/loadingqueue/#comments</comments>
		<pubDate>Mon, 19 Mar 2007 17:56:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[MovieClipLoader]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/loadingqueue/</guid>
		<description><![CDATA[From the site:
LoadingQueue is a simple loading proxy function that controls queuing of loading actions, so you can better control what gets loaded, when, in what order, without being forced to call a bunch of loads and pray that they donâ€™t timeout in case there are too many files to load.
http://labs.zeh.com.br/blog/?page_id=97#loadingqueue
]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>LoadingQueue is a simple loading proxy function that controls queuing of loading actions, so you can better control what gets loaded, when, in what order, without being forced to call a bunch of loads and pray that they donâ€™t timeout in case there are too many files to load.</p></blockquote>
<p><a href="http://labs.zeh.com.br/blog/?page_id=97#loadingqueue" title="LoadingQueue">http://labs.zeh.com.br/blog/?page_id=97#loadingqueue</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/loadingqueue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageLoader</title>
		<link>http://www.actionscriptclasses.com/2007/imageloader-2/</link>
		<comments>http://www.actionscriptclasses.com/2007/imageloader-2/#comments</comments>
		<pubDate>Mon, 19 Mar 2007 17:54:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[MovieClipLoader]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/imageloader-2/</guid>
		<description><![CDATA[From the site:
ImageLoader is a straightforward image loader. It simplifies the job of loading images by automatically creating a list of images being loaded, controlling its queue with priority features (by way of the LoadingQueue class), and by caching images locally using BitmapData instances. This means that when you try to load a new image, [...]]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>ImageLoader is a straightforward image loader. It simplifies the job of loading images by automatically creating a list of images being loaded, controlling its queue with priority features (by way of the LoadingQueue class), and by caching images locally using BitmapData instances. This means that when you try to load a new image, it actually loads the image, saves its BitmapData, and attaches the image to the container (with smooth turned on). Additional image loadings will simply be skipped and the cached bitmap is used instead. Simultaneous downloads also â€œunderstandâ€ each other so if youâ€™re loading the same image on two different containers at the same time, they will have the correct loading percent set and events fired.</p></blockquote>
<p><a href="http://labs.zeh.com.br/blog/?page_id=97#imageloader" title="ImageLoader">http://labs.zeh.com.br/blog/?page_id=97#imageloader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/imageloader-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LoadQueueManager</title>
		<link>http://www.actionscriptclasses.com/2007/loadqueuemanager/</link>
		<comments>http://www.actionscriptclasses.com/2007/loadqueuemanager/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 04:08:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[MovieClipLoader]]></category>
		<category><![CDATA[Movieclip]]></category>
		<category><![CDATA[misc]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2007/loadqueuemanager/</guid>
		<description><![CDATA[From the site:
The Load Queue Manager Class is a development based on other prior developments for managing the loading of multiple external assets into a base movie.
Assets are registered with the Load Queue Manager Class which will progress through the existing queue until all registered assets are loaded.
http://blog.bittube.com/downloads/
]]></description>
			<content:encoded><![CDATA[<p>From the site:</p>
<blockquote><p>The Load Queue Manager Class is a development based on other prior developments for managing the loading of multiple external assets into a base movie.</p>
<p>Assets are registered with the Load Queue Manager Class which will progress through the existing queue until all registered assets are loaded.</p></blockquote>
<p><a href="http://blog.bittube.com/downloads/" title="LoadQueueManager">http://blog.bittube.com/downloads/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2007/loadqueuemanager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageLoader</title>
		<link>http://www.actionscriptclasses.com/2006/imageloader/</link>
		<comments>http://www.actionscriptclasses.com/2006/imageloader/#comments</comments>
		<pubDate>Thu, 17 Aug 2006 18:47:29 +0000</pubDate>
		<dc:creator>flashape</dc:creator>
				<category><![CDATA[AS 2]]></category>
		<category><![CDATA[Bitmap]]></category>
		<category><![CDATA[MovieClipLoader]]></category>

		<guid isPermaLink="false">http://www.actionscriptclasses.com/2006/imageloader/</guid>
		<description><![CDATA[Smooth loaded images by default
http://www.martijndevisser.com/blog/article/imageloader-class-for-flash-8
]]></description>
			<content:encoded><![CDATA[<p>Smooth loaded images by default</p>
<p>http://www.martijndevisser.com/blog/article/imageloader-class-for-flash-8</p>
]]></content:encoded>
			<wfw:commentRss>http://www.actionscriptclasses.com/2006/imageloader/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
