Scaled movie not working in IE

Anyone have any input as to why this works fine on Mac Firefox and Safari and on PC Firefox, but not IE on a PC?

http://www.giganticwork.com/clients/rdk2/

It’s a flash that scaling set to “showAll”. Below is the HTML code. There is nothing in my AS related to sizing (eg. fscommand, etc.) I think it’s just an IE problem. Thanks for any solutions in advance.

  • Doug

<html xmlns=“http://www.w3.org/1999/xhtml” xml:lang=“en” lang=“en”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=ISO-8859-1” />
<title>RDK</title>
<script language=“javascript”> AC_FL_RunContent = 0; </script>
<script language=“javascript”> DetectFlashVer = 0; </script>
<script src=“AC_RunActiveContent.js” language=“javascript”></script>
<script language=“JavaScript” type=“text/javascript”>
var requiredMajorVersion = 8;
var requiredMinorVersion = 0;
var requiredRevision = 24;
</script>
<style type=“text/css”>
/* hide from ie on mac */
html {
height: 100%;
overflow: hidden;
}
/* end hide */

<!–
body {
background-color: #ffffff;
height:100%;
width:100%;
margin:0;
}
–>
</style></head>

<body>

<div style=“background-color:#003656; width:100%;”>
<script language=“javascript”>
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
alert(“This page requires AC_RunActiveContent.js.”);
} else {
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {
AC_FL_RunContent( ‘codebase’,‘http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0’,‘width’,‘100%’,‘height’,‘100%’,‘id’,‘rdk2’,‘align’,‘middle’,‘src’,‘rdk2’,‘quality’,‘best’,‘scale’,‘showAll’,‘bgcolor’,’#FFFFFF’,‘name’,‘rdk2’,‘allowscriptaccess’,‘sameDomain’,‘allowfullscreen’,‘true’,‘pluginspage’,‘http://www.macromedia.com/go/getflashplayer’,‘movie’,'rdk2’ ); //end AC code
} else {
var alternateContent = ‘Please email us if you have trouble viewing this content - info@rdk.com.’
+ ‘This content requires the Adobe Flash Player.’
+ ‘<a href=http://www.macromedia.com/go/getflash/>Get Flash</a>’;
document.write(alternateContent);
}
}
</script>
<noscript>
<object classid=“clsid:d27cdb6e-ae6d-11cf-96b8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,24,0” width=“100%” height=“100%” id=“rdk2” align=“middle”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“allowFullScreen” value=“true” />
<param name=“movie” value=“rdk2.swf” /><param name=“quality” value=“best” /><param name=“scale” value=“showAll” /><param name=“bgcolor” value="#FFFFFF" /> <embed src=“rdk2.swf” quality=“best” scale=“noscale” bgcolor="#FFFFFF" width=“100%” height=“100%” name=“rdk2” align=“middle” allowScriptAccess=“sameDomain” allowFullScreen=“true” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object>
</noscript>
</div>
</body>
</html>