Packagealternativa.engine3d.loaders.events
Classpublic class LoaderEvent
InheritanceLoaderEvent Inheritance flash.events.Event

The event is dispatched by loaders on different stages of loading process.



Public Properties
 PropertyDefined by
  loadingStage : int
[read-only] The stage of loading process.
LoaderEvent
Public Methods
 MethodDefined by
  
LoaderEvent(type:String, loadingStage:int)
Creates a new instance.
LoaderEvent
  
clone():Event
Creates a clone of an event object.
LoaderEvent
  
toString():String
Creates a string representation of an object.
LoaderEvent
Public Constants
 ConstantDefined by
  LOADING_COMPLETE : String = "loadingComplete"
[static] The value of the type property of a loadingComplete event object.
LoaderEvent
  LOADING_START : String = "loadingStart"
[static] The value of the type property of a loadingStart event object.
LoaderEvent
Property detail
loadingStageproperty
loadingStage:int  [read-only]

The stage of loading process. The value can be one of the constants, described in the LoadingStage class.

Implementation
    public function get loadingStage():int

See also

Constructor detail
LoaderEvent()constructor
public function LoaderEvent(type:String, loadingStage:int)

Creates a new instance.

Parameters
type:Stringthe type of an event
 
loadingStage:intthe stage of loading process
Method detail
clone()method
public override function clone():Event

Creates a clone of an event object.

Returns
Eventa clone of an event object
toString()method 
public override function toString():String

Creates a string representation of an object.

Returns
Stringstring object representation
Constant detail
LOADING_COMPLETEconstant
public static const LOADING_COMPLETE:String = "loadingComplete"

The value of the type property of a loadingComplete event object.

LOADING_STARTconstant 
public static const LOADING_START:String = "loadingStart"

The value of the type property of a loadingStart event object.