How can i add swf by swf in html page

I am trying to add swf on top of swf in a html page, it works fine in Firefox, but in IE, the one added first is always on top of the other. I used z-index but it doesn't work, does anyone know how to solve this? Thank.

I already added wmode: transparent, it works in firefox but not IE 6.

0


source to share


3 answers


Add wmode=transparent

to your movie options.



0


source


Use a background iframe ... Here is a nice jquery plugin to handle it for you.



0


source


In order for z-index to work on a given element on the page, this element must be positioned with position: absolute

or position: relative

. You also need to set the parameter to a wmode

value transparent

so that the browser can place the Flash content below other elements on the page.

0


source







All Articles