How to show html div over flash component
When you set the abosolute position of html div element over the flash component , the html div content will be always under the flash
element. This happens because flash always takes precedence over html divs no matter what the z-index is set for html element.
Soln:
Set the wmode parameter of flash component to transparent.
<param name=”wmode” value=”transparent”>
Or
<script [...]






