AS3:如何将渐变光谱中的颜色应用于选定的文本域文本

时间:2012-12-11 07:51:11

标签: actionscript-3 flash

我已经定义了一个渐变色谱,我想用它来改变输入文本字段中文本选择的颜色。预计这将像颜色选择器一样。

1 个答案:

答案 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);