サイトが開いたときに自動的にサウンドを再生したいのですが、無限にループさせたいのですが、ユーザーが1つのミュート/再生ボタンでミュート/再生できるようにしたいのです。
これがmysスクリプトです。
<script type="text/javascript">
soundManager.setup({
url: 'scripts/soundmanager2/swf/',
flashVersion: 8,
onready: function() {
soundManager.createSound({
id: 'mySound',
url: 'audio/ambiance.mp3',
autoLoad: true,
autoPlay: true,
stream:true,
onfinish: function() {loopSound(mySound);},
volume: 50
});
}
$('#mute-play').click(function(){soundManager.togglemute('mySound');})
});
</script>
ミュート/再生機能は、手動でサウンドを開始および停止できるため機能しますが、サイトを開いたときにサウンドが自動的に開始されず、サウンドがまったくループしません。
何が問題ですか?
ありがとうございました。