Has anyone got any alternatives to what Colin Moock has coded to GET VISIBLE WIDTH/HEIGHT OF A DISPLAY OBJECT in ActionScript 3? That esp. in perspective of DisplayObjects that have 3D transforms applied and visible dimensions of which you need to consider for a calculation.

Any leads would be appreciated.

link|improve this question

1  
Moock's solution should take 3D transformations into account since it's just creating a BitmapData object of the display object, then getting the size based on that. Are there limitations in Moock's solution that you're trying to avoid? – wmid Jan 12 '10 at 19:07
Moock's solution is currently the only possible way to do it, but what we'd actually need is a built-in property to DisplayObjectContainer that would do this measuring in a more optimised way, e.g. visibleBounds or something along those lines. – Ain Tohvri Jan 13 '10 at 11:15
feedback

2 Answers

Haven't tested this... try: displayObject.transform.pixelBounds().

link|improve this answer
pixelBounds is not a method but a property of Transform class, thus the above code would result in error. What pixelBounds will retrieve is the Rectangle object with the bounds of the DisplayObject before transformations, unfortunately. – Ain Tohvri Jan 13 '10 at 11:10
There's a workaround that deploys BitmapData at tekkie.flashbit.net/flash/as/… – Ain Tohvri May 3 '10 at 10:22
feedback
up vote 0 down vote accepted

Since the appropriate functionality is entirely missing from ActionScript 3 at this point, please vote for the feature request at Adobe!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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