I attached the html code that was used to scale down a larger movie. Original
movie was like larger than the size on the html. One thing I thought of is
maybe you aren't scaling the sizes down correctly...You have to reduce it using
the correct ratio. For instance, if you wanted the movie to be half size, you
couldn't just divide each number by two, that might be why its cropping.
<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>Title</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body style="text-align:center; background-color: white">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<div style="background-color: black; width: 960px; height: 542px; margin-left:
auto; margin-right: auto">
<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', '960',
'height', '542',
'src', 'movie',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'movie',
'bgcolor', '#ffffff',
'name', 'movie',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'movie',
'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#ve
rsion=9,0,0,0" width="960" height="542" id="movie" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="movie.swf" /><param name="quality" value="high"
/><param name="bgcolor" value="white" /> <embed src="movie.swf" quality="high"
bgcolor="white" width="960" height="542" name="movie" align="middle"
allowScriptAccess="sameDomain" allowFullScreen="false"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</noscript>
</div>
</body>
</html>
sb98052 - 01 Jul 2008 22:40 GMT
Hi Mike,
I found the problem, thanks for your help.
S