So we have a weird issue at work. We need to display a Flash game which uses the keyboard, when the game finishes, it triggers a modal popup via Javascript. We're using the wmode param set to opaque
so that the modal displays on top of the Flash elment.
All works fine, except in IE6/7. When you press the UP or DOWN keys on the keyboard, it scrolls the page up and down, as well as sending the keyboard input to the game.
The only fix we seem to have found for this, is to remove the classid
attribute completely from the object
tag. But that causes the Flash element to display on top of our Javascript modal in both IE6/7.
So it seems we can only have one or the other, but not both if we wanna support IE.
Any help, hints, pointers or anything would be great, cause there's not really much available online about these kinda issues. At least not according to Google.