AssetLoader
Kind of class: | public class |
---|---|
Package: | |
Inherits from: |
|
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
-
AssetLoaderEvent with type:
ERROR
-
AssetLoaderEvent with type:
ALL_LOADED
-
AssetLoaderEvent with type:
START
-
AssetLoaderEvent with type:
ERROR
-
AssetLoaderEvent with type:
COMPLETE
-
AssetLoaderEvent with type:
PROGRESS
Summary
Constructor
-
AssetLoader
(inLoaderCount:Number = 1)
- Creates a new AssetLoader.
Instance methods
-
loadAsset
(inUrl:String, inName:String = "") : void
- Loads an asset.
-
stopLoadingAll
() : void
- Stops loading of all loaders and clears the loading stack.
-
stopLoadingAsset
(inName:String) : void
- Stops loading of asset with name inName.
- getTotalBytesLoaded () : uint
- getTotalBytesCount () : uint
- toString () : String
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
-
AssetLoaderEvent with type:
ERROR
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.
toString
override function toString() : String
Overrides
- EventDispatcher.toString