我正在尝试创建一个位图并将其添加到舞台上,但它不起作用。
this.queue.on("fileload", function(event) {
if(event.item.id == "bg") {
var bg = new createjs.Bitmap(this.queue.getResult("bg"));// doesn't work here!
}
}, this);

但是,如果我在完整的处理程序中执行此操作:
this.queue.on("complete", function(event) {
var bg = new createjs.Bitmap(this.queue.getResult("id"));
this.stage.addChild(bg); //works out and no error
}, this);

非常感谢帮助我!!