Packageorg.ffilmation.engine.events
Classpublic class fEventIn
InheritancefEventIn Inheritance 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



Public Properties
 PropertyDefined by
  name : String
Stores name of event
fEventIn
  xml : XML
Stores XML of event
fEventIn
Public Methods
 MethodDefined by
  
fEventIn(type:String, bubbles:Boolean, cancelable:Boolean, name:String, xml:XML)
Constructor for the fEventIn class.
fEventIn
Property detail
nameproperty
public var name:String

Stores name of event

xmlproperty 
public var xml:XML

Stores XML of event

Constructor detail
fEventIn()constructor
public function fEventIn(type:String, bubbles:Boolean, cancelable:Boolean, name:String, xml:XML)

Constructor for the fEventIn class.

Parameters
type: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