How To Put Up My Own Flash Header?

he is 2ill

New Member
I blurred out my site name & info. ;)
I needed to know how I can use my very own flash banner on top of the forum. I want to to remove this part:

logo.gif


And replace that entire top section (to fit) a cool flash banner that sits atop my forum. What do I do?



Thanks.
 
Upload your swf to a directory.....
Add this to your header template:
PHP:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
  codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0"
  id="actnow" width="468" height="60">
  <param name="movie" value="YOURSWFFILENAME.swf">
  <param name="quality" value="high">
  <param name="bgcolor" value="#000000">
  <embed name="YOURSWFFILENAME" src="YOURSWFFILENAME.swf" quality="high" bgcolor="#000000"
    width="468" height="60"
    type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
  </embed>
</object>

Replace YOURSWFFILENAME (found 3 times) with your own swf file name remember to add url direction folder names too
ie: forum/images/YOURSWFFILENAME.swf

......and then set correct width and height.
 
Back
Top