0711: Flashfile in einer Tabelle-> Netscape lässt 5 px Lücke

Flashfile in einer Tabelle-> Netscape lässt 5 px Lücke vertikal zwischen den MCs.
IE zeigt alles korrect (ohne Lücke an). Wie kann ich Netscape erklären, das da keine Lücke sein soll?

Hier der Code:

<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>
    <td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com" width="771" height="74">
        <param name="movie" value="oben.swf">
        <param name=quality value=high>
        <embed src="oben.swf" quality=high </embed>
      </object></td>
</tr>

<tr>
    <td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com" width="771" height="74">
        <param name="movie" value="mitte.swf">
        <param name=quality value=high>
        <embed src="mitte.swf" quality=high </embed>
      </object></td>
</tr>
<tr>
    <td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com" width="771" height="74">
        <param name="movie" value="unten.swf">
        <param name=quality value=high>
        <embed src="unten.swf" quality=high </embed>
      </object></td>
</tr>
</table>
</body>

  1. Hiho,

    1.)
    <embed src="mitte.swf" quality=high </embed>
    Da stimmt was nicht. Da fehlt die abschliessende >.

    2.)
    Probier es mal mit exact fit. Also erst mal diesen Parameter dazu:
    <param name="SCALE" value="exactfit">
    und ausserdem noch
    <embed src="....... scale="exactfit">

    Grüsse

    Marc