[jQuery] Re: Flash file redraw cutting through JS pop up window

2008-05-07 Thread Lewis
Hi guys Apologies for the late reply to this. thanks so much for your help, all useful information I didnt know - hope it will also be useful for others too. I now have a slightly strange thing going on though... The wmode (in my case using ) works to stop the flash redraw on the main pop up wi

[jQuery] Re: Flash file redraw cutting through JS pop up window

2008-03-28 Thread Alexandre Plennevaux
good point Karl, it's typically the wmode that has to be set to transparent. Be aware that it will make your flash file more resource-intensive on low spec computers. but if it's just for running ads, it shouldn't be a problem. On Fri, Mar 28, 2008 at 7:43 PM, Karl Swedberg <[EMAIL PROTECTED]>

[jQuery] Re: Flash file redraw cutting through JS pop up window

2008-03-28 Thread Karl Swedberg
Hi Lewis, It could be a z-index issue, but you probably have to also set wmode to transparent for the flash object. If you're using swfObject, you can just use: so.addParam("wmode", "transparent"); for embed, you add the attribute: wmode="transparent" for object, you do hope that helps -