MyBB Community Forums

Full Version: Can we use swf logo ??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can we add swf logo to the forum index ??
thanks.
Sure.

ACP -> Templates -> *Your Template Set* -> Expand -> Header -> Edit

Find:
<img src="$theme[logo]" alt="$settings[bbname]" border="0" />

And replace with your flash code.

really nice...
but flash code is should like "http://www.site.com/example.swf"
or another code ??
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="580" height="420">
<param name="movie" value="media/intro.swf">
<param name="quality" value="high">
<param name="LOOP" value="false">
<embed src="media/intro.swf" width="580" height="420" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
Something like:
<object width="550" height="400">
<param name="movie" value="somefilename.swf">
<embed src="somefilename.swf" width="550" height="400">
</embed>
</object>
http://www.w3schools.com/flash/flash_inhtml.asp
michael83 and Christian, thanks a lot...