vote up 0 vote down star

what is the best way to use more than 1 font color with textField.htmlText

I already use code like:

textField.htmlText = "blaa blaa" + "< u >"+w+"< /u >"+"blaa blaa"

How can I make that to define a specific color as well?

flag

77% accept rate

2 Answers

vote up 0 vote down check

FONT Tag is easier

link|flag
vote up 2 vote down

Use flash.text.StyleSheet

var style:StyleSheet = new StyleSheet();
var underline:Object = new Object();
underline.fontWeight = "bold";
underline.color = "#FF0000";
underline.display = "inline";

style.setStyle("u", underline);

textField.styleSheet = style;
textField.htmlText = "blaa blaa" + "< u >"+w+"< /u >"+"blaa blaa"
link|flag
thanks, but there is now a weird LINEFEED after +w+ caused by stylesheet? – Tom Feb 17 at 14:18
I found FONT Tag easier – Tom Feb 17 at 14:49
StyleSheets are a prettier way of doing it, you just have to remember to set your styles as inline to get rid of the linebreak after them. – grapefrukt Feb 25 at 13:12

Your Answer

Get an OpenID
or

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