How to find the width of the icon which is embedded in a button?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Try this:

var icon:DisplayObject = button.getChildByName("upIcon");
trace("icon (width: " + icon.width + ", height: " + icon.height + ")");
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.