MyBB Community Forums

Full Version: Please help me about custom Mycode
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I add a new custom Mycode . But it doesn't work .

Regular expression : \[music\]([a-z]+?://){1}(.+?)\[/music\].
Replacement : <Embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/' src='\"$1"' ShowControls=1 Auto Start=true ShowDisplay=0 ShowStatusBar=1 width=300 height=75></Embed>

What's wrong please ?

I want to replace " [music]$1[/music] " with "<Embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/' src='\"$1"' ShowControls=1 Auto Start=true ShowDisplay=0 ShowStatusBar=1 width=300 height=75></Embed>

Any help me please .
try

\[music\](.*?)\[/music\]

<Embed type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/' src='\"$1"' ShowControls=1 Auto Start=true ShowDisplay=0 ShowStatusBar=1 width=300 height=75></Embed>
Thanks you for helping
I think i finish that problem ^^ .