Flash Action Script 3:如何从颜色选择器获取十六进制值?

时间:2012-12-16 19:13:26

标签: actionscript-3 flash

这是我的代码。

dropColor.addEventListener(ColorPickerEvent.CHANGE, updateValue);
function updateValue(e:ColorPickerEvent){
    trace(dropColor.hexValue);
}

它不起作用。

1046: Type was not found or was not a compile-time constant: ColorPickerEvent.

有人可以告诉我为什么吗?

1 个答案:

答案 0 :(得分:5)

您需要为ColorPickEvent添加导入。

import fl.events.ColorPickerEvent;

另外,根据您使用的编译器,您很可能需要fl.swc:

http://evolve.reintroducing.com/2007/10/30/tips-n-tricks/fl-package-swc/

您需要将其添加到项目中,按照该页面上的说明进行操作。