PDA

View Full Version : Inserting a flash header in vb 3.7


mark|3
05-23-2008, 04:04 AM
Anyone has a soulution to allow a flash image to act as a banner at the top of the page. E.g. flash logo.

Thanks

SEOvB
05-23-2008, 09:10 AM
You just enter the flash HTML code into the header template where you want it to appear?

yotsume
09-26-2008, 06:54 AM
Maybe help if the code was posted for everyone!

notrious
09-29-2008, 09:39 AM
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="$stylevar[left]">

<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>

</td>
<td align="$stylevar[right]" id="header_right_cell">
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else />&nbsp;</if>
</td>


</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]





<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>

<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>

</tr>
</table>
<!-- /logo -->

wwolf27
09-29-2008, 01:16 PM
thanks

SatSeeker
10-08-2008, 08:59 PM
Thank you very much, Notrious! Work great! You save me lots of time for doing something else. Flash based logo is much better quality than GIF based.

Thank you, everyone!
:up: