我已经定义了一个渐变色谱,我想用它来改变输入文本字段中文本选择的颜色。预计这将像颜色选择器一样。
答案 0 :(得分:0)
请参阅此Best way to get the color where a mouse was clicked in AS3获取所选颜色。
如果您拥有它,只需将yourColor
应用于TextFormat
的文本选择:
var myFormat = new TextFormat();
myFormat.color = yourColor;
yourTextField.setTextFormat(myFormat,
yourTextField.selectionBeginIndex,
yourTextField.selectionEndIndex);