
Originally Posted by
mwinter
No. In addition to many of the standard UI widgets like select elements, Flash animations are displayed in a completely separate window (that is, an operating system window) which the user agent has no real control over.
Well, there is one control over that window that's helped me to be able to open drop-down menus (and do other things) over the top of Flash animations on my pages:
Code:
<param name="WMode" value="Transparent">
Placing that among the other parameters on the web page where it loads the Flash document will set the window background to transparent. (That's how I can create flash animations that don't look like flash animations.) This will only cause visible changes to Flash documents that depend on a color attribute rather than an image for their background. If your flash document depends on having a certain color in the background, then just create a rectangle that color and place it in the background. You won't be able to tell the difference. Anyway, drop-down menus and SELECT elements will then open "over" the Flash document.
Bookmarks