IE scrollbar not showing

G’day guys,

A client made me aware of the fact that on small screens, when my swf isn’t completely showing, IE’s scrollbar doesn’t appear - why would that be? I’m using this very simple html:

 
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon"> 
<link rel="shortcut icon" href="favicon.gif" type="image/gif"> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
<style>
body{ margin: 0; padding: 0; }
</style>
</head>
<body bgcolor="#C8C973">
<div align="center">
<script type="text/javascript" src="index.js"></script>
</div>
</body>
</html>

…and this JS for the swf (getting rid of the click to activate etc):

 
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%" id="index" align="middle"> 
\
<param name="allowScriptAccess" value="sameDomain" /> 
\
<param name="movie" value="index.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="bgcolor" value="#C8C973" /><embed src="index.swf" quality="high" scale="noscale" bgcolor="#C8C973" width="100%" height="100%" name="index" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> 
\
</object>');

This site goes live tomorrow, so I’d appreciate any replies!

Boog :slight_smile: