Start/Stop Buttons for Flash (.swf) video working in all browsers but IE.
I've got a flash video (.swf) with a set of start/stop buttons. My problem is that it works in all browsers, including Safari, but not in IE. I'm not a big fan of IE, so don't know the particular code to use. Can anyone whose more familiar with the particulars of IE help me out, please. Here's the code:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="320" height="240" id="ASongOfSpring_1" align="">
<param name=movie value="http://ohiobuttons.org/test/AV_Files/ASongOfSpring_1.swf">
<param name=quality value=high>
<param name=bgcolor value=#333399>
<EMBED id="video1" src="http://ohiobuttons.org/test/AV_Files/ASongOfSpring_1.swf" quality=high bgcolor=#333399 width="320" height="240" name="ASongOfSpring_1" align="" type="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
</object>
</td></tr></table>
<table border=0>
<tr><td><a href="#"><img src="Graphics/Spring_Show/sound-off.png" border=0 onclick="document.getElementById('video1').StopPlay()"></a></td>
<td width=35> </td>
<td><a href="#"><img src="Graphics/Spring_Show/sound-on.png" border=0 onclick="document.getElementById('video1').Play()"></a></td>
</tr></table>
Thanks in advance.