Flash objects appear through overlay
I have a .swf files which runs next to a flyout menu. When the menu flies out, unfortunately it appears behind the flash movie. WTF!! I try to add z-index to my menu. But nothing happen. Googling and found it!! Yippee...
Confuse? see example below.
Add wmode opaque in your script like this
Actionscript:
-
<object ...>
-
<param name="wmode" value="opaque">
-
<embed ... wmode="opaque" ...>
-
</object>
You get what you want ![]()
