Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Basically Mike Koval's answer will do the job, that is setting <code>wmode="transparent"</code>. All other HTML/CSS/JS things will remain the same from <a href="http://www.dynamic-tools.net/toolbox/popUp/" rel="nofollow noreferrer">your own link</a>.</p> <p>Full embedding code HTML version (by <a href="http://code.google.com/p/swfobject/downloads/list" rel="nofollow noreferrer">swfObject's generator</a>) will be:</p> <pre><code>&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="600" id="myFlashContent"&gt; &lt;param name="movie" value="path/to/flash.swf" /&gt; &lt;param name="wmode" value="transparent" /&gt; &lt;!--[if !IE]&gt;--&gt; &lt;object type="application/x-shockwave-flash" data="path/to/flash.swf" width="800" height="600"&gt; &lt;param name="wmode" value="transparent" /&gt; &lt;!--&lt;![endif]--&gt; &lt;a href="http://www.adobe.com/go/getflashplayer"&gt; &lt;img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /&gt; &lt;/a&gt; &lt;!--[if !IE]&gt;--&gt; &lt;/object&gt; &lt;!--&lt;![endif]--&gt; &lt;/object&gt; </code></pre> <p>It will be always better to use <a href="http://code.google.com/p/swfobject/" rel="nofollow noreferrer">swfObject</a> in JS, something like:</p> <pre><code>var flashvars = {}; var params = {}; params.wmode = "transparent"; var attributes = {}; swfobject.embedSWF("path/to/flash.swf", "id-of-the-div-the-flash-will-go", "800", "600", "9.0.0", false, flashvars, params, attributes); </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload