Hi,
I am unable to get wmode working in FF3 with the SWFObject 2.1. Theres
no problem at all in IE, just FF doesnt work. Ive searched through
your documentation and threads and am none the wiser. Your help is
much appreciated.
This code works on both IE and FF
<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.debug = "false";
flashvars.local = "true";
var params = {};
params.scale = "noScale";
params.allowfullscreen = "true";
swfobject.embedSWF("FlashPlayer.swf", "flashcontent", "900", "500",
"10.0.0", false, flashvars, params);
</script>
Again but with the problematic wmode param added does not work on FF.
<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.debug = "false";
flashvars.local = "true";
var params = {};
params.scale = "noScale";
params.allowfullscreen = "true";
params.wmode = "transparent";
swfobject.embedSWF("FlashPlayer.swf", "flashcontent", "900", "500",
"10.0.0", false, flashvars, params);
</script>
Why does added the params.wmode = “transparent”; not work in Firefox? Has anyone else got this problem or found a solution?
Thanks
J