I've just started using JW player on one of my vbulletin sites and now I want to add the plugins that i also ordered, such as facebook, The problem i have is that the example embed code is different to that of vbulletin
ie:
The embed code I use on vBulletin (from vbulletin.org) is:
<object id="player" classid="clsid:D2992DB6E-AW3D-11cf-96B8-8893553540000" name="player" width="730" height="410">
<param name="movie" value="flv/player-licensed.swf" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="file={param}&image=flv/preview.jpg" />
<embed
type="application/x-shockwave-flash"
id="player2"
name="player2"
src="flv/player-licenced.swf"
width="730"
height="410"
allowscriptaccess="always"
allowfullscreen="true"
flashvars="file={param}&image=flv/preview.jpg"
/></object>
what I need to know is how do I add the facebook plugin code of either this
so.addVariable('plugins', 'fbit-1');
or this
'&file=/upload/flash.flv&plugins=fbit-1&dock=true');
to the above code? Any help would be greatly appreciated..


Use this :)
<object id="player" classid="clsid:D2992DB6E-AW3D-11cf-96B8-8893553540000" name="player" width="730" height="410">
<param name="movie" value="flv/player-licensed.swf" />
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="file={param}&image=flv/preview.jpg" />
<embed
type="application/x-shockwave-flash"
id="player2"
name="player2"
src="flv/player-licenced.swf"
width="730"
height="410"
allowscriptaccess="always"
allowfullscreen="true"
flashvars="file={param}&image=flv/preview.jpg&plugins=fbit-1&dock=true"
/></object>