Using SWFObject 2.2, making code with swfobject_generator_1_2_air for dynamic files swaps, I can get my .swf to swap with static image, as I want in all browsers.
Unfortunately, the css navigation menu hides behind the .swf in Chrome 22 & IE9 64x when I'm using those in testing. However, Opera & FF 16.0.1 on Win7 64x I the menu does not hide behind .swf
I thought I had a solution from this question. Yet while adding
params.wmode = "opaque";
fixed the navigation menu error in both Chrome & IE, FF failed. Opera succeeded in either manifestation (with or without above code added). I couldn't test safari at this time.
Thanks.
Nav partially hidden behind .swf in Chrome / IE9 while both .swf / nav work FF / opera
<script type="text/javascript">
var flashvars = {};
var params = {};
var attributes = {};
attributes.id = "ULA AirX Backpack 360 photos";
swfobject.embedSWF("360/airx/airx.swf", "myAlternativeContent", "400", "575", "9.0.0", false, flashvars, params, attributes);
</script>
Nav is visible: Chrome & IE & Opera, but FF does not display .swf
<script type="text/javascript">
var flashvars = {};
var params = {};
params.wmode = "opaque";
var attributes = {};
attributes.id = "ULA AirX Backpack 360 photos";
swfobject.embedSWF("360/airx/airx.swf", "myAlternativeContent", "400", "575", "9.0.0", false, flashvars, params, attributes);
</script>