captsig
10-27-2010, 07:57 PM
Dear friends,
in isolating the essence of my problem, I created a simple page with embedded CSS for demo purposes.
The div on the left, "leftpanel" shuts down the Flash that plays in the div on the right, "flashspot"; you see the border of the
divs, right and left, nothing in the flash div. Remove the "leftpanel", the Flash plays normally in the div on the right!!
I'm baffled by what could be causing this.
Here is the (short) code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style>
#flashspot {
position:relative;
left: 270px;
top: 50px;
width:500px;
height: 400px;
border: thin solid #FF00FF;
}
#leftpanel
{
height: 1200px;
width: 200px;
float:left;
border: thin solid #CC6699;
}
</style>
</head>
<body>
<div id="leftpanel"></div>
<div id="flashspot">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="500" height="400">
<param name="movie" value="images/lucia_shuffle_2a.swf" />
<param name="quality" value="high" />
<embed src="images/lucia_shuffle_2a.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="400"></embed>
</object>
</div>
</body>
</html>
Can anyone suggest a possible solution?
Thanks,
captsig
in isolating the essence of my problem, I created a simple page with embedded CSS for demo purposes.
The div on the left, "leftpanel" shuts down the Flash that plays in the div on the right, "flashspot"; you see the border of the
divs, right and left, nothing in the flash div. Remove the "leftpanel", the Flash plays normally in the div on the right!!
I'm baffled by what could be causing this.
Here is the (short) code:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style>
#flashspot {
position:relative;
left: 270px;
top: 50px;
width:500px;
height: 400px;
border: thin solid #FF00FF;
}
#leftpanel
{
height: 1200px;
width: 200px;
float:left;
border: thin solid #CC6699;
}
</style>
</head>
<body>
<div id="leftpanel"></div>
<div id="flashspot">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="500" height="400">
<param name="movie" value="images/lucia_shuffle_2a.swf" />
<param name="quality" value="high" />
<embed src="images/lucia_shuffle_2a.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="500" height="400"></embed>
</object>
</div>
</body>
</html>
Can anyone suggest a possible solution?
Thanks,
captsig