MyBB Community Forums

Full Version: ínert Flash in forum ????
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can I insert any flash file in my forum. Such as code below
HTML code is
Quote:<object width="300" height="61"><param name="movie" value="http://static.mp3.zing.vn/skins/black/flash/player/mp3Player_skin2.swf?xmlurl=http://mp3.zing.vn/blog/?OC8xYy84MWNkYWZkM2Y0N2M3Y2VhMjFiMDE0YjA4NGM5NzQ4NC5cUIbaBmUsICDN8SSdcUIbaBIFlvInagaMEdXJzIChBY291mUsIC3RpYyBWZXJzaW9dUngKXxKYXNvInagaMEWeBiBNmUsICmF6fGZhWeBHNl" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed width="300" height="61" src="http://static.mp3.zing.vn/skins/black/flash/player/mp3Player_skin2.swf?xmlurl=http://mp3.zing.vn/blog/?OC8xYy84MWNkYWZkM2Y0N2M3Y2VhMjFiMDE0YjA4NGM5NzQ4NC5cUIbaBmUsICDN8SSdcUIbaBIFlvInagaMEdXJzIChBY291mUsIC3RpYyBWZXJzaW9dUngKXxKYXNvInagaMEWeBiBNmUsICmF6fGZhWeBHNl" quality="high" wmode="transparent" type="application/x-shockwave-flash"></embed></object>


BBcode is
Quote:[FLASH]http://static.mp3.zing.vn/skins/black/flash/player/mp3Player_skin2.swf?xmlurl=http://mp3.zing.vn/blog/?OC8xYy84MWNkYWZkM2Y0N2M3Y2VhMjFiMDE0YjA4NGM5NzQ4NC5cUIbaBmUsICDN8SSdcUIbaBIFlvInagaMEdXJzIChBY291mUsIC3RpYyBWZXJzaW9dUngKXxKYXNvInagaMEWeBiBNmUsICmF6fGZhWeBHNl[/FLASH]
Here's how to do it.

Add a custom MyCode:

Title: Flash
Description: Display a flash movie
Regular Expression: \[flash=(.*?)x(.*?)\](.*?)\[/flash\]
Replacement:<object width="$1" height="$2"><param name="movie" value="$3" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed width="$3" height="$2" src="$3" quality="high" wmode="transparent" type="application/x-shockwave-flash"></embed></object>


Example: [flash=widthxheight]URL to the flash file[/flash]
I haven't tested it. It should work though.