Hi,
I want create this bbcode for vbulletin 4.1.x
after complete i have receive vbulletin message
Code:
The following BB Code replacement may not be properly formed. All HTML attributes should be enclosed within double quotes.
<script language="JavaScript" src="http://mysite.com/audio-player/audio-player.js"></script> <object type="application/x-shockwave-flash" data="http://mysite.com/audio-player/player.swf" id="audioplayer4" height="24" width="290"> <param name="movie" value="http://mysite.com/audio-player/player.swf"> <param name="FlashVars" value="playerID=4&soundFile={param}"> <param name="quality" value="high"> <param name="menu" value="false"> <param name="wmode" value="transparent"> </object>
but it still work so well(in admin Panel)
when use in front end it not work(error: file not found)
here my code:
+ Replacement:
PHP Code:
<script language="JavaScript" src="http://mysite.com/audio-player/audio-player.js"></script>
<object type="application/x-shockwave-flash" data="http://mysite.com/audio-player/player.swf" id="audioplayer4" height="24" width="290">
<param name="movie" value="http://mysite.com/audio-player/player.swf">
<param name="FlashVars" value="playerID=4&soundFile={param}">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="wmode" value="transparent">
</object>
I think issue in line:
<param name="FlashVars" value="playerID=4&soundFile={param}
">
I have tried some option custom
<param name="FlashVars" value="playerID=4&soundFile=
"{param}
">
or
<param name="FlashVars" value="playerID=4&soundFile=
'{param}
'">
or
<param name="FlashVars" value="playerID=4&soundFile=
\"{param}
\"">
but it's not work
who can let me know can I fix
Thank so much.