でテキストの色の一部を変更するにはどうすればよい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 に答える