Packagecom.jeffdePascale.fosfr.core
Classpublic class FosfrEvent
InheritanceFosfrEvent Inheritance flash.events.Event

Fosfr dispatches FosfrEvent objects during the instantiation process of the Fosfr core classes. These events are utilized in the base classes in the root of the Fosfr package. There are two types of Fosfr Events:

See also

com.jeffdePascale.fosfr.core.FosfrBaseClass
com.jeffdePascale.fosfr


Public Methods
 MethodDefined by
  
FosfrEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
FosfrEvent
  
toString():String
FosfrEvent
Public Constants
 ConstantDefined by
  CONFIG_LOADED : String = "configLoaded"
[static] The FosfrEvent.CONFIG_LOADED constant defines the value of the type property of the event object for a configLoaded event.
FosfrEvent
  INIT : String = "init"
[static] The FosfrEvent.INIT constant defines the value of the type property of the event object for a init event.
FosfrEvent
Constructor detail
FosfrEvent()constructor
public function FosfrEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)Parameters
type:String
 
bubbles:Boolean (default = false)
 
cancelable:Boolean (default = false)
Method detail
toString()method
public override function toString():String

Returns
String
Constant detail
CONFIG_LOADEDconstant
public static const CONFIG_LOADED:String = "configLoaded"

The FosfrEvent.CONFIG_LOADED constant defines the value of the type property of the event object for a configLoaded event.

The properties of the event object have the following values:

Property Value
type "configLoaded"
bubbles A Boolean value.
cancelable A Boolean value.
INITconstant 
public static const INIT:String = "init"

The FosfrEvent.INIT constant defines the value of the type property of the event object for a init event.

The properties of the event object have the following values:

Property Value
type "init"
bubbles A Boolean value.
cancelable A Boolean value.