Search Results

0
votes
3answers
1k views

Styling UITextField

I've been playing around with different methods of determining at runtime the width of a "label" so that I can resize the "label" because I don't want it to truncate. I've finally found an easy so …
0
votes

which is best site for flash or flex ?

Flex Example is a pretty good resource and the official site …
0
votes

Calculating Dictionary length in Flex

You can use associative arrays instead because I don't think it's possible to ch …
0
votes

how to make text line break in flex textarea

It should work or at the very least < br \> (without the spaces before the "br") should work if you are using htmlText. I was using XML to fill in the TextArea and since …
0
votes

Flex/Actionscript truncateToFit on label component

So I went and embedded a font of my own and it truncates nicely without any particular issue. I'm not sure how you are embedding your font but this method worked for me. If you are doing somethin …
1
vote

Why is ‘textField’ not instantiated when I subclass TextArea in Flex?

Since textField is "the internal UITextField that renders the text of this TextArea" I believe it will remain null until you add it to the display via .addChild(...). I …