My goal is to have this BG.swf file as the background for an HTML table which I'll then put some context over the BG.swf background.....if possible.
Here's my HTML so far:
<body>
<table width="780px" height="96px" background="BG.swf">
<TR>
<TD>
<script type="text/javascript">
AC_FL_RunContent( 'codebase',' ); //end AC code
</script>
<noscript>
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="780" height="96">
<param name="movie" value="BG.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<param name="SCALE" value="noborder">
<embed src="BG.swf" quality="high" pluginspage=" type="application/x-shockwave-flash" width="780" height="96" wmode="transparent" scale="noborder" align="top"></embed>
</object>
</noscript>
</TD>
</TR>
</table>
</body>
**********************************************
**********************************************
I actually need this above table to have the BG.swf file as the background if possible and this below table as the text:
<table width="780" cellspacing="0" cellpadding="0" height="40" border="0" align="center">
<tr>
<td bgcolor="#C89292" height="24" class="text" align="center">Club Text:<br/>
<table width="100%" border="0" summary="All of our great sponsors!">
<caption>
<span class="style4">Please visit our great sponsors: </span>
</caption>
<tr>
<td>Sponsor 1</td>
<td>Sponsor 2</td>
<td>Sponsor 3</td>
<td>Sponsor 4</td>
</tr>
</table></td>
</tr>
</table>
Thanks!
Here's my HTML so far:
<body>
<table width="780px" height="96px" background="BG.swf">
<TR>
<TD>
<script type="text/javascript">
AC_FL_RunContent( 'codebase',' ); //end AC code
</script>
<noscript>
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase=" width="780" height="96">
<param name="movie" value="BG.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<param name="SCALE" value="noborder">
<embed src="BG.swf" quality="high" pluginspage=" type="application/x-shockwave-flash" width="780" height="96" wmode="transparent" scale="noborder" align="top"></embed>
</object>
</noscript>
</TD>
</TR>
</table>
</body>
**********************************************
**********************************************
I actually need this above table to have the BG.swf file as the background if possible and this below table as the text:
<table width="780" cellspacing="0" cellpadding="0" height="40" border="0" align="center">
<tr>
<td bgcolor="#C89292" height="24" class="text" align="center">Club Text:<br/>
<table width="100%" border="0" summary="All of our great sponsors!">
<caption>
<span class="style4">Please visit our great sponsors: </span>
</caption>
<tr>
<td>Sponsor 1</td>
<td>Sponsor 2</td>
<td>Sponsor 3</td>
<td>Sponsor 4</td>
</tr>
</table></td>
</tr>
</table>
Thanks!