Closed GoogleCodeExporter closed 9 years ago
Try changing the wmode property of the Flash object or embed tag that you're
using in the HTML. There's three properties: opaque, transparent, and window.
See if any of those work.
Original comment by rovertn...@gmail.com
on 5 Apr 2011 at 3:18
[deleted comment]
Okay, I've figured it out. The order of swfobject settings in the template file
is wrong. Adjusting them to this fixes the issue in IE:
swfobject.embedSWF("myFlash.swf?<? echo(time()) ?>", "flashContent", "680",
"600", "9.0", null, null, {name:'flashContent', wmode:'opaque'}, null);
Original comment by iwalkthe...@gmail.com
on 5 Apr 2011 at 5:14
Original comment by rovertn...@gmail.com
on 7 Apr 2011 at 7:59
Actually, it should be
swfobject.embedSWF("myFlash.swf?<? echo(time()) ?>", "flashContent", "680",
"600", "9.0", null, null, {wmode:'opaque'}, {name:'flashContent'});
As "name" is an attribute rather than a parameter.
Original comment by TheShang...@gmail.com
on 7 Apr 2011 at 11:20
Original issue reported on code.google.com by
iwalkthe...@gmail.com
on 5 Apr 2011 at 12:39