Here's something I'm trying to figure out concerning display objects in ActionScript3 / Flex. Let's say you have a display object who's registration point is in the top left and you want to scale it from its center (middle of the display object), How could you easily acheive this with the flash.geom.Matrix class

Thanks for your help

link|improve this question

64% accept rate
feedback

1 Answer

up vote 4 down vote accepted

This is done by translating the object to the desired center of scale/rotation, scale/rotate it and then translate it back.

You can do that with a single matrix by concatenating the matrices to get a single matrix:

var m:Matrix = new Matrix();
m.translate(-centerX, -centerY);
m.scale(scaleX, scaleY);
m.translate(centerX, centerY);
link|improve this answer
Thanks Aaron, much apreciated – just_a_dude Nov 27 '09 at 11:04
translate() and scale() aren't static methods. You need to call them from a Matrix instance. – picardo Jan 5 '10 at 0:18
And by the way, the return value on both of those methods is void. – picardo Jan 5 '10 at 0:20
@picardo - good point. Fixed. – Aaron May 7 '11 at 5:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.