Get rid of the object. I did and it worked in IE 10 in it's IE 10, 9, and 8 modes:
Code:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<EMBED id="video1" src="ASongOfSpring_1.swf" quality=high bgcolor=#333399 width="320" height="240" name="ASongOfSpring_1" align="" type="application/x-
</td></tr></table>
<table border=0>
<tr><td><a href="#" onclick="document.getElementById('video1').StopPlay(); return false;">Stop</a></td>
<td width=35> </td>
<td><a href="#" onclick="document.getElementById('video1').Play(); return false;">Play</a></td>
</tr></table>
</body>
</html>
Some IE might not be able to stream the embed while it's loading, and IE 9 or 8 or both might not perform as they do in the IE 9 and 8 modes of IE 10. But it's worth a shot. If all else fails:
Code:
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript">
function stopVid(){
try{document.getElementsByName('video1')[0].StopPlay();}
catch(e){document.getElementById('video1').StopPlay();}
}
function playVid(){
try{document.getElementsByName('video1')[0].Play();}
catch(e){document.getElementById('video1').Play();}
}
</script>
</head>
<body>
<object name="video1" 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="ASongOfSpring_1.swf">
<param name=quality value=high>
<param name=bgcolor value=#333399>
<EMBED id="video1" src="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="#" onclick="stopVid(); return false;">Stop</a></td>
<td width=35> </td>
<td><a href="#" onclick="playVid(); return false;">Play</a></td>
</tr></table>
</body>
</html>
Bookmarks