createjs soundjs 控制音乐下载和播放

[pcsh lang="js" tab_size="4" message="" hl_lines="" provider="manual"]

	createjs.Sound.addEventListener("fileload", handleLoadComplete);
	createjs.Sound.registerSound({src:"./music/Kalimba.mp3", id:"sound"});
	function handleLoadComplete(event) {
		createjs.Sound.play("sound");
	}

[/pcsh]

还有很严重的问题,还不能和图片一起预加载

此处评论已关闭