Package | com.greensock.events |
Class | public class LoaderEvent |
Inheritance | LoaderEvent flash.events.Event |
Property | Defined by | ||
---|---|---|---|
data : * Event-related data which varies based on the type of event.
| LoaderEvent | ||
target : Object [read-only]
The loader associated with the LoaderEvent.
| LoaderEvent | ||
text : String For
ERROR, FAIL , and CHILD_FAIL events, this text will give more details about the error or failure. | LoaderEvent |
Method | Defined by | ||
---|---|---|---|
LoaderEvent(type:String, target:Object, text:String = "", data:* = null)
Constructor
| LoaderEvent | ||
clone():Event
| LoaderEvent |
Constant | Defined by | ||
---|---|---|---|
CANCEL : String = "cancel" [static] Dispatched when the loader aborts its loading.
| LoaderEvent | ||
CHILD_CANCEL : String = "childCancel" [static] Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children aborts its loading.
| LoaderEvent | ||
CHILD_COMPLETE : String = "childComplete" [static] Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children finishes loading.
| LoaderEvent | ||
CHILD_FAIL : String = "childFail" [static] Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children fails to load.
| LoaderEvent | ||
CHILD_OPEN : String = "childOpen" [static] Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children begins loading.
| LoaderEvent | ||
CHILD_PROGRESS : String = "childProgress" [static] Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children dispatches a
PROGRESS Event. | LoaderEvent | ||
COMPLETE : String = "complete" [static] Dispatched when the loader finishes loading.
| LoaderEvent | ||
ERROR : String = "error" [static] Dispatched when the loader (or one of its children) throws any error, like an IO_ERROR or SECURITY_ERROR.
| LoaderEvent | ||
FAIL : String = "fail" [static] Dispatched when the loader fails.
| LoaderEvent | ||
HTTP_STATUS : String = "httpStatus" [static] Dispatched when the loader (or one of its children) receives an HTTP_STATUS event (see Adobe docs for specifics).
| LoaderEvent | ||
INIT : String = "init" [static] Dispatched when the loader initializes which means different things for different loaders.
| LoaderEvent | ||
IO_ERROR : String = "ioError" [static] Dispatched when the the loader (or one of its children) encounters an IO_ERROR (typically when it cannot find the file at the specified
url ). | LoaderEvent | ||
OPEN : String = "open" [static] Dispatched when the loader begins loading, like when its
load() method is called. | LoaderEvent | ||
PROGRESS : String = "progress" [static] Dispatched when the loader's
bytesLoaded changes. | LoaderEvent | ||
SCRIPT_ACCESS_DENIED : String = "scriptAccessDenied" [static] When script access is denied for a particular loader (like if an ImageLoader or SWFLoader tries loading from another domain and the crossdomain.xml file is missing or doesn't grant permission properly), a SCRIPT_ACCESS_DENIED LoaderEvent will be dispatched.
| LoaderEvent | ||
SECURITY_ERROR : String = "securityError" [static] Dispatched when the loader (or one of its children) encounters a SECURITY_ERROR (see Adobe's docs for details).
| LoaderEvent |
data | property |
public var data:*
Event-related data which varies based on the type of event. For example, VideoLoader dispatches a VIDEO_CUE_POINT event containing data about the cue point.
target | property |
target:Object
[read-only]
The loader associated with the LoaderEvent. This may be different than the currentTarget
.
The target
always refers to the originating loader, so if there is an ImageLoader nested inside
a LoaderMax instance and you add an event listener to the LoaderMax, if the ImageLoader dispatches an error
event, the event's target
will refer to the ImageLoader whereas the currentTarget
will
refer to the LoaderMax instance that is currently processing the event.
public function get target():Object
text | property |
public var text:String
For ERROR, FAIL
, and CHILD_FAIL
events, this text will give more details about the error or failure.
LoaderEvent | () | constructor |
public function LoaderEvent(type:String, target:Object, text:String = "", data:* = null)
Constructor
Parameterstype:String — Type of event
|
|
target:Object — Target
|
|
text:String (default = " ") — Error text (if any)
|
|
data:* (default = null )
|
clone | () | method |
public override function clone():Event
Returns
Event |
CANCEL | constant |
public static const CANCEL:String = "cancel"
Dispatched when the loader aborts its loading. This can happen when the loader fails, when cancel()
is manually called, or when another loader is prioritized in the loading queue.
CHILD_CANCEL | constant |
public static const CHILD_CANCEL:String = "childCancel"
Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children aborts its loading. This can happen when the loader fails, when cancel()
is manually called, or when another loader is prioritized in the loading queue.
CHILD_COMPLETE | constant |
public static const CHILD_COMPLETE:String = "childComplete"
Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children finishes loading.
CHILD_FAIL | constant |
public static const CHILD_FAIL:String = "childFail"
Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children fails to load.
CHILD_OPEN | constant |
public static const CHILD_OPEN:String = "childOpen"
Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children begins loading.
CHILD_PROGRESS | constant |
public static const CHILD_PROGRESS:String = "childProgress"
Dispatched by a LoaderMax (or other loader that may dynamically recognize nested loaders like XMLLoader and SWFLoader) when one of its children dispatches a PROGRESS
Event.
COMPLETE | constant |
public static const COMPLETE:String = "complete"
Dispatched when the loader finishes loading.
ERROR | constant |
public static const ERROR:String = "error"
Dispatched when the loader (or one of its children) throws any error, like an IO_ERROR or SECURITY_ERROR.
FAIL | constant |
public static const FAIL:String = "fail"
Dispatched when the loader fails.
HTTP_STATUS | constant |
public static const HTTP_STATUS:String = "httpStatus"
Dispatched when the loader (or one of its children) receives an HTTP_STATUS event (see Adobe docs for specifics).
INIT | constant |
public static const INIT:String = "init"
Dispatched when the loader initializes which means different things for different loaders. For example, a SWFLoader dispatches INIT
when it downloads enough of the swf to render the first frame. When a VideoLoader receives MetaData, it dispatches its INIT
event, as does an MP3Loader when it receives ID3 data. See the docs for each class for specifics.
IO_ERROR | constant |
public static const IO_ERROR:String = "ioError"
Dispatched when the the loader (or one of its children) encounters an IO_ERROR (typically when it cannot find the file at the specified url
).
OPEN | constant |
public static const OPEN:String = "open"
Dispatched when the loader begins loading, like when its load()
method is called.
PROGRESS | constant |
public static const PROGRESS:String = "progress"
Dispatched when the loader's bytesLoaded
changes.
SCRIPT_ACCESS_DENIED | constant |
public static const SCRIPT_ACCESS_DENIED:String = "scriptAccessDenied"
When script access is denied for a particular loader (like if an ImageLoader or SWFLoader tries loading from another domain and the crossdomain.xml file is missing or doesn't grant permission properly), a SCRIPT_ACCESS_DENIED LoaderEvent will be dispatched.
SECURITY_ERROR | constant |
public static const SECURITY_ERROR:String = "securityError"
Dispatched when the loader (or one of its children) encounters a SECURITY_ERROR (see Adobe's docs for details).