这是我的代码。
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.
有人可以告诉我为什么吗?
答案 0 :(得分:5)
您需要为ColorPickEvent添加导入。
import fl.events.ColorPickerEvent;
另外,根据您使用的编译器,您很可能需要fl.swc:
http://evolve.reintroducing.com/2007/10/30/tips-n-tricks/fl-package-swc/
您需要将其添加到项目中,按照该页面上的说明进行操作。