I've researched this sound business a bit more and Twey's method is better than I thought. But, the buttons need to be like so:
Code:
<button onclick="document.getElementById('mySound').Play();">Play</button>
<button onclick="document.getElementById('mySound').Stop();">Stop</button>
Capitalization counts in Mozilla and Opera.
Added later - Oh, and I just discovered that Opera needs the enablejavascript="true" attribute set for the embed:
Code:
<embed id="mySound" src="mySound.mid" loop="false" autostart="false" hidden="true" enablejavascript="true">
Bookmarks