This should be simple and yet I cant find an answer.
I have a SWF embedded in an HTML page. the SWF is the navigation for the HTML page. When I resize the HTML browser the SWF disappears. Im on a mac using MX.
Ive tried putting my HTML table into pixels and percents, neither attempt helps. My SWF is set to 766 pixels wide. SCALE value is set to default. SWF is centered in table cell. I tried SALIGN=LT which didnt help. I tried various scale methods, none worked.
What else could it possible be? Code is below
Thanks
RR
----------------------------------
<html>
<head>
<title>Home</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#00000" text="#ffffff" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="789" height="516" border="0" cellpadding="0" cellspacing="0" align="left">
<tr>
<td valign="top" align="left" rowspan="3" bgcolor="#000000"><img src="images/spacer.gif" width="20"></td>
<td valign="top" align="left" width="1" rowspan="3" background="images/whitedot.gif"><img src="images/spacer.gif" width="1"></td>
<td valign="top" align="left" height="142"><img src="images/home_topbar.gif" border="0" height="142">
</td>
<td valign="top" align="left" rowspan="5" background="images/whitedot.gif"><img src="images/spacer.gif" width="1"></td>
</tr>
<tr>
<td valign="top" align="left" height="226"><img src="images/home_middle.jpg" border="0">
</td>
</tr>
<tr>
<td valign="top" align="left"><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="767" HEIGHT="30" id="home" ALIGN="left">
<PARAM NAME=movie VALUE="flash/home.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#000000>
<EMBED src="flash/home.swf" quality=high bgcolor=#000000 WIDTH="767" HEIGHT="30" NAME="home" ALIGN=""
TYPE="application/x-shockwave-flash" PLUGINSPAGE="
http://www.macromedia.com/go/getflashplayer"> </EMBED>
</OBJECT> </td>
</tr>
</table>
</body>
</html>