cocostudio2.0 + cocos2djs3.1导入资源显示异常!

我通过cocostudio2.0生成了一个场景,在cocostudio2.0中模拟显示正常,显示内容见cocostudio.png.
资源导出后,在cocos ide中运行模拟(mac)显示见cocos_ide.png.这时显示的界面上就多来一层半透明的
布蒙住了。但有个最上层大按钮没有被蒙住,请问这是什么原因啊?
加载csb代码如下:

var HelloWorldLayer = cc.Layer.extend({
    sprite:null,
    ctor:function () {
        this._super();
        var logon = ccs.csLoader.createNode("xxxx.csb");
        this.addChild(logon, 100);


        return true;
    }
});


var HelloWorldScene = cc.Scene.extend({
    onEnter:function () {
        this._super();
        var layer = new HelloWorldLayer();
        this.addChild(layer);
    }
});


```

代码乱了,重新贴下

var HelloWorldLayer = cc.Layer.extend({
sprite:null,
ctor:function () {
this._super();
var logon = ccs.csLoader.createNode(“xxxx.csb”);
this.addChild(logon, 100);

    return true;
}

});

var HelloWorldScene = cc.Scene.extend({
onEnter:function () {
this._super();
var layer = new HelloWorldLayer();
this.addChild(layer);
}
});

求大神们帮忙下啊

求大神们帮忙下啊 ,在线等阿