Search code examples
htmlflashiframebgiframe

is it possible to place an element over flash that has wmode=window in chrome?


I'm working on a page that has some ads on it. One of them loads in an ad with wmode=window. I don't have the ability to change that flash code. I need to put a modal box on top of that flash element, but every combination of using z-indexes and iframe shims has failed (both manually and using bgiframe). Is there a way to place html content on top of a flash element with wmode=window? I'm testing this in chrome so far... figuring if I can't at least get it to work there, it won't work anywhere.


Solution

  • I'm afraid there is no way around it.

    WMODE-window forces the browser to render the element on the very top layer, and it will overlap everything.

    Rob