如何更改部分文本颜色spark.components.TextArea
?
问问题
802 次
2 回答
2
TextArea 可以做到这一点。试试这个:
var format:TextLayoutFormat = new TextLayoutFormat();
format.color = 0x00ff00;
this.textarea.setFormatOfRange(format, startIndex, endIndex);
于 2012-12-14T09:23:06.207 回答
1
好吧,TextArea 不能这样做。您应该尝试 RichText 或一些相关组件。
http://help.adobe.com/en_US/flex/using/WS02f7d8d4857b1677-165a04e1126951a2d98-7fca.html
于 2012-11-05T15:02:37.203 回答