overlay html over flash?
flash, html, iframe, popup
Solution
It is not standards-compliant, but try adding `wmode="transparent"` to the `embed` tag as follows:
<object>
<!-- ... -->
<param name="wmode" value="transparent"/>
<embed src="flash_file.swf" wmode="transparent"></embed>
<!-- ... -->
</object>
With these parameters set, the flash movie should obey CSS z-index settings.
Problem
Possible Duplicate: Div Z-Index issue with Flash movie Is it possible to overlay a piece of html over a flash animation given this context: -flash contents underneath is NOT clickable -html will contain js link clicking which will open an iframe popup similar to: http://www.dynamic-tools.net/toolbox/popUp/ thanks!