Open
Description
I'm using PreloadJs with SoundJs to preload and play 7-11 short mp3 sounds.
var manifest = [{
id: "correctSound",
src: "https://site.com/audios/welldone.mp3"
},{
id: "incorrectSound",
src: "https://site.com/audios/oops.mp3"
}]
var queue = new createjs.LoadQueue()
queue.installPlugin(createjs.Sound);
queue.loadManifest(manifest);
Sometimes users get following error:
Failed to read the 'responseXML' property from 'XMLHttpRequest': The value is only accessible if the object's 'responseType' is '' or 'document' (was 'arraybuffer').
It happens only on Windows XP with Chrome 40.0.2214 and Chrome 42.0.2311. This error never happened on other os/browsers. I can't reproduce it on my machine and i have no access to users computers.
Any ideas what can cause this?