Flash movie not resizing in browser

Good evening,

I am trying to get a Flash movie to resize in my browser, using Javascript.

I have tried writing a resize function, shown below, but the trace statement shows that the “resizing” alert pops up for the user, but no resizing of the swf takes place, no browser scrollbars appear to allow the user to see the whole movie, nothing.


[SIZE=2]function updatePage( newHeight, newWidth )
{
alert("start size");
document.id_object.height=newHeight;
document.id_embed.height=newHeight;
document.id_object.width=newWidth;
document.id_embed.width=newWidth;
}
[/SIZE]

I’ve even tried just setting the parameter tags to an outrageously large size, just so I can at least see some effect. But nothing. I’ve set allowFullscreen to both true and false, nadda.

Here’s the full code:

[SIZE=2]
<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>IntegratedGame</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<!--
<p align="left"></p>
-->
<!-- saved from url=(0013)about:internet -->
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', '100%',
'height', '100%',
'src', 'IntegratedGame',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'top',
'play', 'true',
'loop', 'true',
'scale', 'noscale',
'wmode', 'window',
'devicefont', 'false',
'id', 'IntegratedGame',
'bgcolor', '#ffffff',
'name', 'IntegratedGame',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'IntegratedGame',
'base', 'http://dodgames.org/nuke/html/dotgame/',
'salign', ''
); //end AC code
}
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width=10 height=10 id="IntegratedGame" align="top">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="IntegratedGame.swf" />
<param name="quality" value="high" />
<param name="height" value="20000" />
<param name="width" value="20000" />
<param name="scale" value="noscale" />
<param name="bgcolor" value="#ffffff" /> 
<param name="base" value="http://dodgames.org/nuke/html/dotgame/"
<embed src="IntegratedGame.swf" quality="high" scale="noscale" bgcolor="#ffffff" width=10 height=10 name="IntegratedGame" align="top" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" / base="http://dodgames.org/nuke/html/dotgame/" >
</object>
</noscript>
</body>
</html>
[/SIZE]

Any JS/HTML gurus who can shed some light on this? Thanks!