FYI - wmode=window is the default for a flash <object>, so it does not actually need to get written to the page. However, if you specifically set the wmode param to something, then you should see the same value when debugging in firebug etc.
When I look at your supplied page in Firebug, I see: <object width="960" height="600" type="application/x-shockwave-flash" id="lucid" data="swf/test13.swf"> <param name="wmode" value="window"> <param name="base" value="swf/"> </object> <!-- end flashcontent --> Which is exactly as it should be based on the embedSWF() call you make. So I am not able to reproduce the issue you are seeing. I am also not able to think how what you are describing is even possible, as SWFObject has no knowledge of the possible wmode values. It just allows you to pass param name/value pairs through to the <object> and does not interpret them or change their values.... Aran On Wed, Jul 6, 2011 at 3:46 PM, jthomas <[email protected]> wrote: > Sure. I encountered the issue on a site I'm currently developing, but > it's also popping up on an old project too, which you can check out > here: http://www.drinklucid.com/. That site uses 'window' for 'wmode' > It seems like it's specifically an issue with dynamic embedding and > either 'transparent' or 'window' wmode, since I've used the static > method on other sites and those are not having an issue. > > -- > You received this message because you are subscribed to the Google Groups > "SWFObject" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/swfobject?hl=en. > > -- You received this message because you are subscribed to the Google Groups "SWFObject" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/swfobject?hl=en.
