Here I am again, I have another problem... :( Please Bobby test the
code below and look how it behaves: I can't make SWFObject 2.0 work
like version 1.5. It seems to not consider the tag "position:
absolute" inside the div.
Here's the code:
----------------------------------------------------------------------------------------------------------------------------------------------------
<html>
<head>
<title>SWFObject test page</title>
<script type="text/javascript" src="swfobject15.js"></script>
<script type="text/javascript" src="swfobject20.js"></script>
<script type="text/javascript">
function swfobject15()
{
so = new SWFObject('
http://www.lukamaras.com/tutorials/cool-design/
media/example-3-D-logo.swf', 'movie', '200', '200', '7');
so.addParam('quality', 'high');
so.addParam('menu', 'false');
so.write('movie');
}
function swfobject20()
{
expressinstall_url = false;
flashvars = false;
params = { quality: 'high', menu: 'false' };
attributes = { id: 'movie' };
swfobject.embedSWF('
http://www.lukamaras.com/tutorials/cool-design/
media/example-3-D-logo.swf', 'movie', '200', '200', '7.0.0',
expressinstall_url, flashvars, params, attributes);
}
</script>
</head>
<body bgcolor="#000000">
<div id="movie" style="position: absolute; top: 150px; left:
350px"></div>
<br><br><br><br><br><br>
<a href="javascript: swfobject20()"><b>TEST IT!</b></a></td>
</body>
</html>
----------------------------------------------------------------------------------------------------------------------------------------------------
Any help? Thank you!