Has anyone had success getting JW Player working properly in vBulletin 3.x? I don't want to use it with the AME plugin-in. I basically want to just upload mp3 files to my website and embed JW. I went through the instructions and put the SWF code in my headerinclude template, but when I put the SWFObject code into a new post, I just get the "This text will be replaced" (instead of the actual player).
Was hoping someone could offer some insight. Thanks!
--------------- Added [DATE]1299604298[/DATE] at [TIME]1299604298[/TIME] ---------------
Figured it out. Thx!
--------------- Added [DATE]1299625858[/DATE] at [TIME]1299625858[/TIME] ---------------
Actually ran into another problem. The javascript I have in my posts (to embed the JW Player) works fine in Firefox, but not in IE. Was wondering maybe if IE is not liking how vBulletin is displaying the javascript.
http://www.nokturnalist.com/john-dig...-new-york.html
The above works fine in Firefox (it displays the player), but it does not work in IE
Here is the javascript
:
Quote:
<SCRIPT type=text/javascript src="http://nokturnalist.com/jwplayer/swfobject.js"></SCRIPT>
<div id='mediaspace'>This text will be replaced</div>
<SCRIPT type=text/javascript>
var so = new SWFObject('http://nokturnalist.com/jwplayer/player.swf','mpl','500','24','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://nokturnalist.com/media/mixes/JohnDigweed/John_Digweed-1998-03-06-Live_At_Twilo.mp3');
so.write('mediaspace');
</SCRIPT>
|