MyBB Community Forums

Full Version: How to Use Flash Swf file in Mybb
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am using Mybb 1.6 and trying to modify the theme with some Flash SWF content. Its a tag cloud plugins based on flash. But in which directory I should upload the SWF file. alterenatly how to use Flash with MyBB.


Thanks

Regards

HAKrBOY
Same problem unable to post .swf file in 1.6 version....
flash .swf file can be added by using object embeding code in header / footer template

example :
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="400" height="70">
  <param name="movie" value="UR ad here.swf" />
  <param name="quality" value="high" />
  <param name="allowScriptAccess" value="always" />
  <param name="wmode" value="transparent">
     <embed src="filename.swf"
      quality="high"
      type="application/x-shockwave-flash"
      WMODE="transparent"
      width="400"
      height="80"
      pluginspage="http://www.macromedia.com/go/getflashplayer"
      allowScriptAccess="always" />
</object>