Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Am working on a flash component that is supposed to display some dynamic text which might include HTML formatting. This text is displayed in a label component (AS3), and i would want it to render correctly, like create a line break when <br> is inserted, but it doesn't!

So am wondering what the supported HTML tags in the label component, and in general all other flash components?

share|improve this question

1 Answer

up vote 1 down vote accepted

There's a complete list in the help docs. If you want my advice, try to use the htmlText property as little as possible for complex layout issues. It's a bag of hurt as soon as you mix in images or want to try some more advanced (=by standards of 2001) CSS.

Cheers, EP.

share|improve this answer
Thanks, actually access to the reference solve some other issues I had. Thanks for the link – nemesisfixx Feb 1 '11 at 14:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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