Flex Text height
Posted
by kevin
on Stack Overflow
See other posts from Stack Overflow
or by kevin
Published on 2010-04-07T23:07:39Z
Indexed on
2010/04/07
23:13 UTC
Read the original article
Hit count: 282
How can you get the height of the Text component that's been created dynamically from ActionScript. For instance, if you have something like:
var temp:Text = new Text;
temp.width = 50;
temp.text = "Simple text";
how to get height of temp?
© Stack Overflow or respective owner