我刚刚开始使用Easeljs,我想在点击我的Bitmap时调用一个函数。 这就是我所取得的成功:
function creationBitmap()
{
monBitmap=new createjs.Bitmap(monImage);
monBitmap.addEventListener("click", thefunctioniwanttocall);
monBitmap.x=0;
monBitmap.y=0;
scene.addChild(monBitmap);
stage.update();
}
function thefunctioniwanttocall()
{
alert("Hello World!");
}
谢谢!