Hi, How I can set the wmode="transparent" to the jw script ? it's very very very important for my because I have a dhtml menu on my website and the flash without wmode="transparent" hides my menu.
I can't load my html file and edit it on frontpage, because the jw player code is just a script, so i cant set wmode="transparent on frontpage web editor".
sorry for my bad english he he.
this is my code, please please someone can edit this with wmode="transparent" ???? PLEASE :( thank you very much..
<script type="text/javascript" src="../../../../swfobject.js"></script>
<div id="player">This text will be replaced</div>
<script type="text/javascript">
var so = new SWFObject('../../../../player.swf','mpl','680','430','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=http://video.com/video.mp4&backcolor=000066&frontcolor=FFFFFF&lightcolor=FFFFFF&controlbar=over&stre...');
so.write('player');
</script>
bye bye.
It's very easy... look at this =D
<script type="text/javascript" src="../../../../swfobject.js"></script>
<div id="player">This text will be replaced</div>
<script type="text/javascript">
var so = new SWFObject('../../../../player.swf','mpl','680','430','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('wmode', 'transparent','true');
so.addParam('flashvars','&file=http://video.com/video.mp4&backcolor=000066&frontcolor=FFFFFF&lightcolor=FFFFFF&controlbar=over&stre...');
so.write('player');
</script>