up vote 0 down vote favorite
share [g+] share [fb]

I was wondering if anyone has came up with a way to float html elements, with some content, over .swf without triggering any flash events.

In my case the problem is I have flash map, and drop down menu on top of it.

I simplified this into the following example:

http://f1vlad.com/etc/d.html

If you mouseover any elements in gray box, you will see that stuff behind it, in a flash file, triggers hover effects.

link|improve this question
It works fine on FF3.5 w/ Linux x64. What browser and OS are you using? – tixxit Jan 26 '10 at 22:47
Using FF3.6 on OSX – f1vlad Jan 27 '10 at 14:43
feedback

2 Answers

Have you tried adjusting the z-index of the HTML elements with CSS.

Try applying this to your HTML element: z-index: 1000;

Update: I have placed HTML elements over an .swf and had the area of the flash that is covered by the HTML not respond to click events. Is this essentially the same symptoms you want to correct?

try

display: block;
link|improve this answer
"z-index: 1000;" -- or anything above what your flash element is sitting at. Note: tested in Firefox 3.6, and this works. – amphetamachine Jan 26 '10 at 22:56
Yeah I tried, it does not work. z-index doesn't help because flash is rendered above anything else. Also wmode=transparent doesn't work either. – f1vlad Jan 26 '10 at 23:03
feedback

In Firefox 3.5, your page sort of works. When I mouseout of the floating box and on to Canada it will trigger the mouseover event for Canada. However, if I mouseover the floating box again the SWF doesn't receive the mouseout event so Canada stays highlighted. I assume you want to have Canada receive the mouseout event when this happens?

I would use ExternalInterface to have the floating box call methods in the SWF when the mouse enters and leaves the floating box. That way you can simulate the mouseleave event to reset the country highlight and popups, then when the mouse leaves the floating box you can check to see if the mouse is over a country and perform the mouseover event normally.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.