3cho
3cho

Reputation: 547

Problem with flash positioning itself over a javascript lightwindow in IE6 & IE7

I have a problem with a flash object placing itself on top over everything in IE6 and IE7.

Firefox renders the page correctly.

I bet somebody else has had this problem and found some kinda solution to it.

Upvotes: 2

Views: 904

Answers (3)

user256997
user256997

Reputation: 1

Yes, I had a problem with flash menu over the lightwindow panel, and adding wmode="transparent" in the object and embed tags worked.

Upvotes: 0

grapefrukt
grapefrukt

Reputation: 27045

wmode=transparent is the way to go.

Upvotes: 0

DavGarcia
DavGarcia

Reputation: 18812

Because Flash runs inside an ActiveX control in IE browsers, it doens't follow the stack rules since ActiveX controls are always rendered on to of normal HTML content (except for drop down, annoyingly).

There is a workaround though to force Flash to obey, set the wmode="transparent" in your object tag, and optionally the embedded tag too.

Upvotes: 6

Related Questions