ASP.NET Menu Problem With .swf file
I have a drop down menu and a swf file on an asp.net page. When the menu drops down it is开发者_StackOverflow behind the swf file when it should appear in front.
Add the following parameter to the OBJECT tag:
<param name="wmode" value="transparent">
Add the following parameter to the EMBED tag:
wmode="transparent"
(Taken from the Adobe site)
精彩评论