Trouble Getting CFMENU to Open Over Flash CFFORM (z-index)
I was having a bit of trouble getting the new ColdFusion 8 cfmenus to "fly over" a flash cfform. As it turns out it was an issue with the flash "Z
Index" of the page. To fix the issue all I had to do was add wMode="opaque" to the flash form. This was indirectly mentioned in the CF documentation. It has been years since I have used wMode with flash.
From Gary Gilbert's Website
Example Code
<cfmenu NAME="mymenu" type="horizontal" >
<cfmenuitem display="Foo" />
<cfmenuitem display="Bar" />
<cfmenuitem display="Gee" />
<cfmenuitem display="Eff" >
<cfmenuitem display="Why" />
</cfmenuitem>
<cfform format="flash" wMode="opaque">
<cfinput name="FirtName" Label="First Name" value="Moe">
<cfinput name="LastName" Label="Last Name" value="Foe">
</cfform>



There are no comments for this entry.
[Add Comment]