Packagecom.ghostwire.ui.events
Classpublic class uiMoveEvent
InheritanceuiMoveEvent Inheritance flash.events.Event

The uiMoveEvent class defines the "move" event that is dispatched when a component is explicitly moved via the move() method.

~ This class is available in Aspire UI Components Lite Edition ~

See also

com.ghostwire.ui.core.uiComponent.move()


Public Properties
 PropertyDefined by
  oldX : Number
Stores the previous x coordinate of the component.
uiMoveEvent
  oldY : Number
Stores the previous y coordinate of the component.
uiMoveEvent
Public Methods
 MethodDefined by
  
uiMoveEvent(oldX:Number, oldY:Number)
Creates a new uiMoveEvent object with the specified oldX and oldY parameters.
uiMoveEvent
Public Constants
 ConstantDefined by
  MOVE : String = "move"
[static] Dispatched when the component is explicitly moved via the move() method.
uiMoveEvent
Property detail
oldXproperty
public var oldX:Number

Stores the previous x coordinate of the component.

oldYproperty 
public var oldY:Number

Stores the previous y coordinate of the component.

Constructor detail
uiMoveEvent()constructor
public function uiMoveEvent(oldX:Number, oldY:Number)

Creates a new uiMoveEvent object with the specified oldX and oldY parameters.

Parameters
oldX:Number — The previous x coordinate of the component.
 
oldY:Number — The previous y coordinate of the component.
Constant detail
MOVEconstant
public static const MOVE:String = "move"

Dispatched when the component is explicitly moved via the move() method.

This event has the following properties:

PropertyValue
bubblesfalse
cancelablefalse; there is no default behavior to cancel.
currentTargetThe object that is actively processing the event object with an event listener.
targetThe object that dispatched the event. The target is not always the object listening for the event. Use the currentTarget property to access the object that is listening for the event.
oldXAn integer number indicating the old value of the x position.
oldYAn integer number indicating the old value of the y position.