Re: Flash movie hideing CSS dropdown menu.
Here's another way...
Setting the z-index for the div tag, can work with flash files, menus are any object. The higher the value the more likely it will be on top, the lower, the more likely it will be under another item. If you set the z-index on both items, then you can control who is on top.
Using a flash file to create a page peel effect I set z-index to 99 so it's on top of everything when activated...
Code:
<style type="text/css">
#peel { position:absolute; top:0px; right:0px; width:480px; height:480px; z-index:99; }
</style>
Then I warp my object and embed tags within a div tag..
Code:
<div id="peel"> <object classid...</div>
I believe you can set the z-index for other html tags, just makes it easier to use a div tag.
Dave
Always forward thinking... Lost my mind!