MyBB Community Forums

Full Version: SoundCloud integration.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anyone knows if there's a SoundCloud integtration plugin out?
So like, it lets you insert a SoundCloud player directly into your post.
SoundCloud.com

If there isn't any out, I'd be willing to pay someone for coding me such plugin Smile.

Regards, Simse.
Add a custom MyCode...

Regular Expression:
\[sc\](.*?)\[/sc\]

Replacement:
<object height="81" width="100%"> <param name="movie" value="http://player.soundcloud.com/player.swf?url=$1"></param> <param name="allowscriptaccess" value="always"></param> <embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=$1" type="application/x-shockwave-flash" width="100%"></embed> </object>

Usage:
[sc]http://soundcloud.com/thatdropwassick/2011-mix[/sc]
You're the man!
Thank you very much.