AQSet

Kind of class: public class
Package:
Inherits from:
  • none
Classpath: org.asaplibrary.util.actionqueue.AQSet
File last modified: Wednesday, 11 May 2011, 18:54:25
Action methods to set the properties of a DisplayObject or MovieClip.

Summary

Instance methods
  • setLoc (inDO:DisplayObject, inX:Number = Number.NaN, inY:Number = Number.NaN) : Action
    • Sets the location of a DisplayObject
  • setVisible (inDO:DisplayObject, inFlag:Boolean) : Action
    • Sets the visible flag of a DisplayObject.
  • setAlpha (inDO:DisplayObject, inAlpha:Number) : Action
    • Sets the alpha value of a DisplayObject.
  • setScale (inDO:DisplayObject, inScaleX:Number = Number.NaN, inScaleY:Number = Number.NaN) : Action
    • Sets the scale of a DisplayObject.
  • setToMouse (inDO:DisplayObject) : Action
    • Sets a DisplayObject to the mouse position.
  • centerOnStage (inDO:DisplayObject, inOffsetX:Number = Number.NaN, inOffsetY:Number = Number.NaN) : Action
    • Sets a DisplayObject to the center of the stage.
  • setEnabled (inMC:MovieClip, inState:Boolean) : Action
    • Sets the enabled flag of a MovieClip

Instance methods

centerOnStage

function centerOnStage(inDO:DisplayObject, inOffsetX:Number = Number.NaN, inOffsetY:Number = Number.NaN) : Action

Sets a DisplayObject to the center of the stage.

Parameters
inOffsetX:(optional) x offset; default 0
inOffsetY:(optional) y offset; default 0
Returns
  • The performing Action.

setAlpha

function setAlpha(inDO:DisplayObject, inAlpha:Number) : Action

Sets the alpha value of a DisplayObject.

Parameters
inDO :DisplayObject to set
inAlpha:alpha value between 0 and 1
Returns
  • The performing Action.

setEnabled

function setEnabled(inMC:MovieClip, inState:Boolean) : Action

Sets the enabled flag of a MovieClip

Parameters
inOffsetX:(optional) x offset; default 0
inOffsetY:(optional) y offset; default 0
Returns
  • The performing Action.

setLoc

function setLoc(inDO:DisplayObject, inX:Number = Number.NaN, inY:Number = Number.NaN) : Action

Sets the location of a DisplayObject

Parameters
inDO:DisplayObject to set
inX :(optional) x position; default the current x position
inY :(optional) y position; default the current y position
Returns
  • The performing Action.

setScale

function setScale(inDO:DisplayObject, inScaleX:Number = Number.NaN, inScaleY:Number = Number.NaN) : Action

Sets the scale of a DisplayObject.

Parameters
inDO :DisplayObject to set
inScaleX:(optional) x scale; default the current x scale
inScaleY:(optional) y scale; default the current y scale
Returns
  • The performing Action.

setToMouse

function setToMouse(inDO:DisplayObject) : Action

Sets a DisplayObject to the mouse position.

Parameters
inDO:DisplayObject to set
Returns
  • The performing Action.

setVisible

function setVisible(inDO:DisplayObject, inFlag:Boolean) : Action

Sets the visible flag of a DisplayObject.

Parameters
inDO :DisplayObject to set
inFlag:visibility flag
Returns
  • The performing Action.