我目前正在尝试设置soundmanager2以查找我的根网站文件夹中的swf文件夹。这将启用闪回后备。我很努力地找到我设置路径的代码片段,经历了很多次。
我还如文档中所示,将此代码添加到我的html:
的头部soundManager.setup({
url: '/path/to/swfs/',
flashVersion: 9,
onready: function() {
// console.log('SM2 ready!');
},
ontimeout: function() {
// console.log('SM2 init failed!');
},
defaultOptions: {
// set global default volume for all sound objects
volume: 33
}
});
底部代码是soundmanager2.js代码的缩小版本。
Soundmanagers核心文件只包含这个javascript文件,2个swf文件,2个css文件,这就是它。我不知道我错过了什么。
提前谢谢你,请尽可能简单地理解答案:-) (我刚接触js)
答案 0 :(得分:0)
soundManager.setup({
flashVersion: 9,
preferFlash: false,
useHighPerformance: true, // keep flash on screen, boost performance
wmode: 'transparent', // transparent SWF, if possible
url: 'http://www.hiding-my-file/Soundmanager2Files/soundmanager2_flash9.swf/'
});
在Soundmanager的一个剧本中,我发现他们把它放在了设置的最后。它对我有用。