1

这是我的代码。

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.

有人能告诉我为什么吗?

4

1 回答 1

5

您需要为您的 ColorPickEvent 添加导入。

import fl.events.ColorPickerEvent;

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

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

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

于 2012-12-16T21:13:33.707 回答