StageUtils

Kind of class: public class
Package:
Inherits from:
  • none
Classpath: org.asaplibrary.util.StageUtils
File last modified: Wednesday, 11 May 2011, 19:06:58

Summary

Class methods
  • centerOnStage (inDO:DisplayObject, inOffsetX:Number = Number.NaN, inOffsetY:Number = Number.NaN, inShouldCenter:Boolean = false) : void
    • Centers a DisplayObject to the stage.

Class methods

centerOnStage

static function centerOnStage(inDO:DisplayObject, inOffsetX:Number = Number.NaN, inOffsetY:Number = Number.NaN, inShouldCenter:Boolean = false) : void

Centers a DisplayObject to the stage.

Parameters
inDO :DisplayObject to center
inOffsetX :(optional) x offset
inOffsetY :(optional) y offset
inShouldCenter:(optional) whether the object should be centered itself, assuming a origin at the upper left; when set to true, the position of the object is moved left and up by half its width and height
Example
  • This example centers the DisplayObject on the stage, with an offset of 50 and 0: StageUtils.centerOnStage( my_mc, false, 50, 0 );