Scrollbar problem

hi there,

I made a webpage in flash, but it exceeds the average screensize, so I wanted to make a scrollbar for it (for scrolling the whole page) but I’m not very experienced in html and whatever I tried did not succeed (I found out how to make a table with a scrollable textfield, but I don’t seem to get it work for the flash-page)

this is my html code (without the script for scrolling)

<html xmlns=“XHTML namespace” xml:lang=“en” lang=“en”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<title>index</title>

<style type=“text/css”>
<!–
body {
background-color: #E3E3E3;
background-image: url(pattern_grijsgroen.gif);
}
–>
</style></head>

<script language=“javascript”>AC_FL_RunContent = 0;</script>
<script src=“AC_RunActiveContent.js” language=“javascript”></script>
</head>

<body>

<!–url’s used in the movie–>
<!–text used in the movie–>
<!-- 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’, ‘index’,
‘quality’, ‘high’,
‘pluginspage’, ‘http://www.macromedia.com/go/getflashplayer’,
‘align’, ‘top’,
‘play’, ‘true’,
‘loop’, ‘true’,
‘scale’, ‘noscale’,
‘wmode’, ‘transparent’,
‘devicefont’, ‘false’,
‘id’, ‘index’,
‘bgcolor’, ‘#ffffff’,
‘name’, ‘index’,
‘menu’, ‘true’,
‘allowFullScreen’, ‘false’,
‘allowScriptAccess’,‘sameDomain’,
‘movie’, ‘index’,
‘salign’, ‘t’
); //end AC code
}
</script>
<noscript>

&lt;script type="text/javascript"&gt;

AC_FL_RunContent( ‘codebase’,‘http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0’,‘width’,‘100%’,‘height’,‘100%’,‘id’,‘index’,‘align’,‘top’,‘src’,‘index’,‘quality’,‘high’,‘scale’,‘noscale’,‘wmode’,‘transparent’,‘bgcolor’,‘#ffffff’,‘name’,‘index’,‘allowscriptaccess’,‘sameDomain’,‘allowfullscreen’,‘false’,‘pluginspage’,‘http://www.macromedia.com/go/getflashplayer’,‘movie’,'index’ ); //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=“100%” height=“100%” id=“index” align=“top”>
<param name=“allowScriptAccess” value=“sameDomain” />
<param name=“allowFullScreen” value=“false” />
<param name=“movie” value=“index.swf” /><param name=“quality” value=“high” /><param name=“scale” value=“noscale” /><param name=“wmode” value=“transparent” /><param name=“bgcolor” value=“#ffffff” /> <embed src=“index.swf” quality=“high” scale=“noscale” wmode=“transparent” bgcolor=“#ffffff” width=“100%” height=“100%” name=“index” align=“top” allowScriptAccess=“sameDomain” allowFullScreen=“false” type=“application/x-shockwave-flash” pluginspage=“http://www.macromedia.com/go/getflashplayer” />
</object></noscript>

</noscript>

</body>
</html>

if anyone could help me out, I’d be much obliged :slight_smile: