createjs sound works good my pc , becomes blank after uploading server
My simple interactive createjs animation working good in my pc. but it shows blank once i load it to server
http://graphicscoder.org/test/wew/btn_loop_codesnippet.html
code is very simple . i just exported sound as well as other images so it added this extra two line of code
function playSound(id, loop) {
createjs.Sound.play(id, createjs.Sound.INTERRUPT_EARLY, 0, 0, loop);
}
everything is ok. no issue . running well in my pc with sound . but becomes blank canvas once i upload it to server. my server is ok.
my previous version without sound export running well in my server. so the issue is sound with server . its really strange.
