我目前正在 IE/flash 上下文(不是 html5)中使用 soundmanager2。问题是在以下情况下,不会发生 mp3 内容的音频播放,其中“onload”回调函数被定义为 null 或作为几乎什么都不做的函数。
soundManager.createSound({
id: 'someidforasoundfile',
url: 'pathtoaudiofile.mp3',
autoLoad: true,
autoPlay: true,
onload: function() {
return 1;
},
volume: 50
});
如果我将“onload”回调定义为:
function() { alert('zing'); }
soundmanager2 实际上会开始播放音频文件……但是会弹出一个恼人的警报,用户必须应对。
这是 soundmanager2 配置问题还是其他问题?
提前致谢!
ct