http://www.macromedia.com/cfusion/kn...fm?id=tn_14201
That link explains how to fix a flash object to work as you desire, the short version is to add in this language to your object/embed tag:
Add the following parameter to the OBJECT tag:
<param name="wmode" value="transparent">
Add the following parameter to the EMBED tag:
wmode="transparent"
As for an iframe, you should be able to set both the menu and the iframe's position to either relative or absolute. Many menus are already one or the other. Then set the menu's z-index higher than the iframe's:
Code:
<div id="menudivision" style="position:relative;z-index:100;">menu goes here</div>
<iframe style="position:relative;" other iframe attributes go here></iframe>
(Default z-index is zero)
Bookmarks