Mathieu_BSL
08-25-2005, 02:44 PM
Hi !
I want to insert a Flash object in my HTML page without displaying the
browser vertical scroller.
Actually, I use this script :
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<style type="text/css">
<!--
body {
width: 100%;
height: 100%;
border: none;
margin: 0px;
padding: 0px;
}
-->
</style>
</head>
<body scroll="NO">
<object id="application" width="100%" height="100%" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" >
<param name="movie" value="file.swf">
<param name="SeamlessTabbing" value="false">
</object>
<script language="Javascript">
<!--
application.focus();
-->
</script>
</body>
</html>
But officially, <body scroll="NO"> is not a "legal" option, even if
supported by MIE. (that's what Dreamweaver said...)
Is there a better way to avoid the displaying of any
scroll bar in every browsers ?
I didn't found such option in the css options...
Regards,
Mathieu
I want to insert a Flash object in my HTML page without displaying the
browser vertical scroller.
Actually, I use this script :
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<style type="text/css">
<!--
body {
width: 100%;
height: 100%;
border: none;
margin: 0px;
padding: 0px;
}
-->
</style>
</head>
<body scroll="NO">
<object id="application" width="100%" height="100%" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" >
<param name="movie" value="file.swf">
<param name="SeamlessTabbing" value="false">
</object>
<script language="Javascript">
<!--
application.focus();
-->
</script>
</body>
</html>
But officially, <body scroll="NO"> is not a "legal" option, even if
supported by MIE. (that's what Dreamweaver said...)
Is there a better way to avoid the displaying of any
scroll bar in every browsers ?
I didn't found such option in the css options...
Regards,
Mathieu