Read more

Flash SWF movie bleeds into an element covering it

Henning Koch
September 09, 2010Software engineer at makandra GmbH

Embedded Flash movies do not always obey element order and z-index.

Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

To fix this, set the wmode attribute to transparent in both <object> and <embed> tags:

<object ... >
  <param name="wmode" value="transparent" />
  <embed ... wmode="transparent" />
</object>
Posted by Henning Koch to makandra dev (2010-09-09 19:15)