up vote 1 down vote favorite
share [g+] share [fb]

I am dynamically adding labels to a form and I would like to set some of them to be bold. I can;t seem to find an easy way to make a label bold in ActionScript. It is very easy to do in MXML. I would think that it would simply be an attribute that is set. How do you make a label bold?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted
myLabel.setStyle("fontWeight", "bold");
link|improve this answer
feedback

Hmm... the easiest way I would do it would be using the htmlText property, eg:

label.htmlText = "<b> Hello </b>";
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.