i didn't read all of this page yet, but, maybe this will help solve what i'm trying to do?
http://www.alohatechsupport.net/webdesignmaui/maui-web-design-articles/layer_flash_under_html.htmlalso, it's not particularly for any client i have or anything. It's for my thesis project. The flash is a giant ass background image that fades into a new image every 10 seconds. The website is just a full browser window image that changes every 10 seconds. Then I'm trying to fit the content on top of it (obviously).
edit ---------------------------
Sooo, i threw in all that code from that page i posted. It came out like the attached image. >_>
So, it's on top of the flash, however, the flash is now cut into 1/3. So only the left side is visible, which I'm confused about, I didn't really change any sizes. Here's the updated code:
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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>airdog</title>
<link href="airdog_css.css" rel="stylesheet" type="text/css" />
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body>
<div id="container">
<div id="flash">
<!----------------------- START my flash object ------------------------>
<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=8,0,0,0',
'width', '100%',
'height', '100%',
'src', 'FLASHbkg',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'exactfit',
'wmode', 'window',
'devicefont', 'false',
'id', 'FLASHbkg',
'bgcolor', '#ffffff',
'name', 'FLASHbkg',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'FLASHbkg',
'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=8,0,0,0" width="100%" height="98%" id="FLASHbkg" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="FLASHbkg.swf" />
<param name="quality" value="high" />
<param name="scale" value="exactfit" />
<param name="bgcolor" value="#ffffff" />
<param name="wmode" value="transparent" />
<embed src="FLASHbkg.swf" quality="high" scale="exactfit" bgcolor="#ffffff" width="100%" height="98%" name="FLASHbkg" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" />
</object>
</noscript>
<!----------------------- END my flash object ------------------------>
</div>
<div class="body">
This is the body.
</div>
</div>
</body>
</html>
CSS
body {
background-color: #000000;
margin-bottom: 0px;
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
}
#flash {
width:'100%';
height:'100%';
position: absolute;
z-index: 0;
}
.body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #FFFFFF;
margin-left: 15px;
margin-top: 35px;
padding: 5px;
font-weight: bold;
line-height: 14px;
position: absolute;
z-index: 1;
}