精灵上的CreateJS点击事件不起作用

时间:2015-11-26 09:03:15

标签: createjs

我在CreateJS中的精灵上遇到点击事件时遇到问题。该事件未按预期发射。我试过了:

button.addEventListener("click", function() { alert('test'); });

button.on("click", function() { alert('test'); });

他们都没有点击点击事件。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

我发现了我的问题。我忘了在舞台上启用鼠标。

e.g。

var stage = new createjs.Stage("canvasId");
//Children of container can dispatch mouse events
stage.mouseChildren = true;
//EaselJS checks 10 times per second what's under mouse pointer
stage.enableMouseOver(10);

CreateJS mouse events tutorial