0
與textField.htmlText
一起使用超過1種字體顏色的最佳方式是什麼?與textField.htmlText一起使用字體顏色的最佳方式
我已經使用了這樣的代碼:
textField.htmlText = "blaa blaa" + "<u>"+w+"</u>"+"blaa blaa"
我怎麼能作出這樣來定義一個特定的顏色呢?
與textField.htmlText
一起使用超過1種字體顏色的最佳方式是什麼?與textField.htmlText一起使用字體顏色的最佳方式
我已經使用了這樣的代碼:
textField.htmlText = "blaa blaa" + "<u>"+w+"</u>"+"blaa blaa"
我怎麼能作出這樣來定義一個特定的顏色呢?
FONT標籤是容易
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"
感謝,但現在有一個奇怪的LINEFEED後+ W +的樣式引起的? – Tom 2009-02-17 14:18:59