| Package | org.ffilmation.engine.events |
| Class | public class fEventIn |
| Inheritance | fEventIn flash.events.Event |
The fEventIn event class stores information about an IN event.
This event is dispatched whenever a character in the engine moves into a cell where an XML even was defined
| Property | Defined by | ||
|---|---|---|---|
| name : String
Stores name of event
| fEventIn | ||
| xml : XML
Stores XML of event
| fEventIn | ||
| Method | Defined by | ||
|---|---|---|---|
|
fEventIn(type:String, bubbles:Boolean, cancelable:Boolean, name:String, xml:XML)
Constructor for the fEventIn class.
| fEventIn | ||
| name | property |
public var name:StringStores name of event
| xml | property |
public var xml:XMLStores XML of event
| fEventIn | () | constructor |
public function fEventIn(type:String, bubbles:Boolean, cancelable:Boolean, name:String, xml:XML)Constructor for the fEventIn class.
Parameterstype:String — The type of the event. Event listeners can access this information through the inherited type property.
|
|
bubbles:Boolean — Determines whether the Event object participates in the bubbling phase of the event flow. Event listeners can access this information through the inherited bubbles property.
|
|
cancelable:Boolean — Determines whether the Event object can be canceled. Event listeners can access this information through the inherited cancelable property.
|
|
name:String — Name that was given to this event in its XML definition
|
|
xml:XML |