AssetLoader

Kind of class: public class
Package:
Inherits from:
  • EventDispatcher
Classpath: org.asaplibrary.util.loader.AssetLoader
File last modified: Wednesday, 11 May 2011, 18:57:08
Loads assets (SWF movies or supported image formats) into a clip. Multiple/subsequent added assets that are added are queued. AssetLoader can deal with multiple loading threads simultaneously (if passed to the constructor). The number of simultaneous loading processes is limited by the browser though.
Events broadcasted to listeners

Summary

Constructor
  • AssetLoader (inLoaderCount:Number = 1)
    • Creates a new AssetLoader.
Instance methods

Constructor

AssetLoader

function AssetLoader(inLoaderCount:Number = 1)

Creates a new AssetLoader.

Parameters
inLoaderCount:number of parallel loaders

Instance methods

getTotalBytesCount

function getTotalBytesCount() : uint
Returns
  • The total number of bytesTotal ("the compressed bytes in the entire media file") of all working Loader objects.

getTotalBytesLoaded

function getTotalBytesLoaded() : uint
Returns
  • The total number of loaded bytes of all working Loader objects.

loadAsset

function loadAsset(inUrl:String, inName:String = "") : void

Loads an asset.

Parameters
inURL :source url of the file
inName:(optional) unique identifying name
Events broadcasted to listeners

stopLoadingAll

function stopLoadingAll() : void

Stops loading of all loaders and clears the loading stack.

stopLoadingAsset

function stopLoadingAsset(inName:String) : void

Stops loading of asset with name inName.

Parameters
inName:identifying name as passed to loadAsset

toString

override function toString() : String
Overrides
  • EventDispatcher.toString