Packageorg.ffilmation.engine.events
Classpublic class fMoveEvent
InheritancefMoveEvent Inheritance flash.events.Event

The fMoveEvent event class stores information about a move event.

This event is dispatched whenever an element in the engine changes position. This allows the engine to track objects and rerender the scene, as well as programming reactions such as one element following another



Public Properties
 PropertyDefined by
  dx : Number
The increment of the x coordinate that corresponds to this movement.
fMoveEvent
  dy : Number
The increment of the y coordinate that corresponds to this movement.
fMoveEvent
  dz : Number
The increment of the z coordinate that corresponds to this movement.
fMoveEvent
Public Methods
 MethodDefined by
  
fMoveEvent(type:String, bubbles:Boolean, cancelable:Boolean, dx:Number, dy:Number, dz:Number)
Constructor for the fMoveEvent class.
fMoveEvent
Property detail
dxproperty
public var dx:Number

The increment of the x coordinate that corresponds to this movement. Equals new position - last position

dyproperty 
public var dy:Number

The increment of the y coordinate that corresponds to this movement. Equals new position - last position

dzproperty 
public var dz:Number

The increment of the z coordinate that corresponds to this movement. Equals new position - last position

Constructor detail
fMoveEvent()constructor
public function fMoveEvent(type:String, bubbles:Boolean, cancelable:Boolean, dx:Number, dy:Number, dz:Number)

Constructor for the fMoveEvent 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.
 
dx:Number — The increment of the x coordinate that corresponds to this movement
 
dy:Number — The increment of the y coordinate that corresponds to this movement
 
dz:Number — The increment of the z coordinate that corresponds to this movement