I am writing code to open popup window in greasemonkey using div. Everything is fine, but when window is opened on pages with embedded objects, it is not obove the objects. What could be the reason?
Asked
Active
Viewed 112 times
1 Answers
1
If the embedded object is a Flash player then set the object param to opaque.
<object ...>
<param name="wmode" value="opaque">
</object>
Also see How do I programmatically set all <object>'s to have the wmode set to opaque? to see how to do it automatically.

Community
- 1
- 1

P. Galbraith
- 2,477
- 21
- 24