我已经定义了一个渐变色谱,我想用它来更改输入文本字段中文本选择的颜色。预计这就像颜色选择器一样。
问问题
346 次
1 回答
0
请参阅此最佳方法来获取在 AS3 中单击鼠标以获取所选颜色的颜色。
当你拥有它时,只需使用yourColor
a 应用于文本选择TextFormat
:
var myFormat = new TextFormat();
myFormat.color = yourColor;
yourTextField.setTextFormat(myFormat,
yourTextField.selectionBeginIndex,
yourTextField.selectionEndIndex);
于 2012-12-11T08:19:58.363 回答