Flash z-index in iframe
so this is a problem: when I'm using flash on website, and creating some dialog box which should be over all other elements I use just proper z-index for dialog box (in IE6 it's needed to set transparent wmode for flash). But flash programmer don't want to give me flash file and suggested to use iframe linking to his website.
- on my website there is iframe
- in iframe there is a flash object
- when showing dialog box flash is over dialogbox (not depe开发者_如何转开发nding of z-index and even wmode that I set by firebug)
I can't get touch with flash developer (anyway he sad that flash object will still remain on his website) so maybe you have any solution? and weird thing: - on some pc's it's working properly, one some not. what can be the reason?
Because Flash is being rendered by a plugin, I don't think changes made to the wmode
property in Firebug will have immediate effect. You'll need to add the wmode="transparent"
in the source and reload the page.
精彩评论