A challenge I am currently facing is with my live event site and the list of events displayed in a mouseover menu.
The issue arises when the flash streaming player remains in front of the mouseover menu, causing interference across all versions of Internet Explorer.
While the 'wmode' parameter has been known to solve similar problems for many users in the past, it unfortunately does not seem to work in my case. Below is the rendered flash object for the player:
<object id="flowplayer" width="100%" height="100%" wmode="transparent" data="http://releases.flowplayer.org/swf/flowplayer-3.2.18.swf" type="application/x-shockwave-flash">
<!-- load configuration from config.js -->
<param name="flashvars" value="config=player.aspx?pID=585&config=1">
<param name="wmode" value="transparent">
<param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.18.swf">
<param name="allowfullscreen" value="true">
</object>
I attempted using 'wmode=opaque' as well but unfortunately that did not resolve the issue either.