[thelist] embedded flash movie pushes tables apart

Rachel Starr rachelistarr at home.com
Sun Jun 10 18:30:52 CDT 2001


I have embedded a flash movie in an html page.  I have 3 tables: a top table
with one gif, a middle table in which the third column contains the flash
movie, and a bottom table of gifs.  In Netscape (it's fine in IE), the
bottom table is pushed downwards away from the middle table by a few pixels.
This may be a basic coding error, but I can't find it.
How can I get the bottom table to top align with the middle table?
Here is sample code:

<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
    <title>flash3</title>
</head>
<body>
<!-- top table -->
<table border="0" cellpadding="0" cellspacing="0" width="602"
align="center">
    <tr>
        <td width="602"><img name="top" src="flash/top.gif" width="602"
height="54" border="0" alt=""></td>
    </tr>
</table>
<!-- middle table -->
<table border="0" cellpadding="0" cellspacing="0" width="602"
align="center">
    <tr>
        <td width="120" valign="top"><img name="logo" src="flash/logo.gif"
width="120" height="180" border="0" alt=""></td>
        <td width="478" valign="top"><object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
b#version=5,0,0,0" width="478" height="180">
                  <param name=movie value="moduledesigns.swf">
                  <param name=quality value=high>
                  <embed src="moduledesigns.swf" quality=high
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_
Version=ShockwaveFlash" type="application/x-shockwave-flash" width="478"
height="180">
                  </embed>
                </object></td>
        <td width="4" valign="top"><img name="green_bar"
src="flash/green_bar.gif" width="4" height="180" border="0" alt=""></td>
    </tr>
</table>
<!-- bottom table -->
<table border="0" cellpadding="0" cellspacing="0" width="602"
align="center">
    <tr>
        <td width="602"><img name="orange_bar" src="flash/orange_bar.gif"
width="602" height="11" border="0" alt=""></td>
    </tr>
</table>           

</body>
</html>







More information about the thelist mailing list