0
以下代碼是正確的?EaselJS中的EventDispatcher
function MyClass()
{
createjs.EventDispatcher.initialize(this);
var _that = this;
...
function _onCompletedFunc()
{
var user_event = new createjs.Event("completed");
user_event.label = "my label";
_that.dispatchEvent(user_event);
}
}
我正確理解EaselJS中的EventDispatcher嗎? 謝謝。
謝謝蘭尼) –