Packageorg.ffilmation.engine.events
Classpublic class fEventOut
InheritancefEventOut Inheritance flash.events.Event

The fEventIn event class stores information about an OUT event.

This event is dispatched whenever a character in the engine moves outside a cell where an XML event was defined



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

Stores name of event

xmlproperty 
public var xml:XML

Stores XML of event

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

Constructor for the fEventOut 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