| Package | com.jeffdePascale.fosfr.core |
| Class | public class FosfrEvent |
| Inheritance | FosfrEvent flash.events.Event |
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
| Method | Defined by | ||
|---|---|---|---|
|
FosfrEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
| FosfrEvent | ||
|
toString():String
| FosfrEvent | ||
| Constant | Defined 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 | ||
| FosfrEvent | () | constructor |
public function FosfrEvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)Parameters
type:String |
|
bubbles:Boolean (default = false) |
|
cancelable:Boolean (default = false) |
| toString | () | method |
public override function toString():String
Returns
String |
| CONFIG_LOADED | constant |
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. |
| INIT | constant |
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. |