为什么不能在LoadQueue的文件加载事件中创建Bitmap?

时间:2015-07-17 16:27:00

标签: createjs

我正在尝试创建一个位图并将其添加到舞台上,但它不起作用。



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);




非常感谢帮助我!!

0 个答案:

没有答案