I want to use TweenMax's scale property to scale a displayObject from 0 to 1, which works fine. But I also want the object to scale from its center. the displayObject's registration point is located on it's upper left corner so its currently scaling from there. Is there a way to make it scale from the visual center of the displayObject's center with out moving it's registration point?   TweenMax.fromTo(displayObject,1,{visible:true,scale:0},{scale:1,ease:Back.easeOut})