Version 2.2.2,IE11,load ccb (cocosbuilder) don't work,please help

version 2.2.2,IE11,load ccb (cocosbuilder) don’t work,please help

because of xmlhttp in fileutils.js , rewrite it will be ok. simply using html5 method, covert to uint8array

How to solve it?
Did not understand, can explain in detail what

fileutils 看着太烂,重写了 只支持 chrome 10, firefox 6 ie10 opera 11.6

sys.browser = (function () {
var userAgent = navigator.userAgent,
rMsie = /(msie\s|trident.rv:)/,
rFirefox = //,
rOpera = /.+version\//,
rChrome = //,
rSafari = /version\/.
(safari)/;
var browser;
var version;
var ua = userAgent.toLowerCase();
var ret;

{
var match = rMsie.exec(ua);
if (match != null) {
ret = { name: “ie”, version: match[2] || “0” };
}
var match = rFirefox.exec(ua);
if (match != null) {
ret = { name: match[1] || “”, version: match[2] || “0” };
}
var match = rOpera.exec(ua);
if (match != null) {
ret = { name: match[1] || “”, version: match[2] || “0” };
}
var match = rChrome.exec(ua);
if (match != null) {
ret = { name: match[1] || “”, version: match[2] || “0” };
}
var match = rSafari.exec(ua);
if (match != null) {
ret = { name: match[2] || “”, version: match[1] || “0” };
}
if (match != null) {
ret = { name: “”, version: “0” };
}
}

ret.isie /*_opera*/ = ret.name = ‘ie’ //|| ret.name = ‘opera’;
return ret;
})();

Hi, Wayde Fei

Thanks for helping, we do have problems with FileUtils and the general resource loading process, and we apologize for that.
But it won’t last for long, we are planning to refactor the resource loading process in the next version.

@pingsheng kang
You can try the solution of wayde for now, and in the next version we will resolve your problem with built in solution.

Huabin