Classes
 ClassDescription
 MultiLoader The MultiLoader Class is for managing the loading of multiple assets

MultiLoader can load in images, videos, sounds, text and XML

Basic instantiation is:
var ml : MultiLoader = MultiLoader.getLoader("my_loader");

To add an asset to the queue in the simplest way, you can use:
ml.add("http://www.my_site.com/my_image.jpg", MultiLoaderTypes.IMAGE);

And once all required assets have been added, the loader should be told to begin:
ml.start();
 MultiLoaderManager A collection of static methods which help manage new and exisiting loaders, and returns loading data for all items in a specific loader instance

As this information is always returned in the progress event, it shouldn't really be necessary to access this directly.
 MultiLoaderQuickLoad The quickest, simplest way to load an item - suitable for quick testing, or if you don't need access to the loader.