The fix doesn’t seem to be working for me.
This is how I’m embedding the Flash:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','215','height','400','src','menu','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie','menu','wmode','transparent','menu','false' ); //end AC code
</script>
<noscript>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="215" height="400">
<param name="movie" value="menu.swf" />
<param name="quality" value="high" />
<embed src="menu.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="215" height="400"></embed>
</object>
</noscript>
I downloaded the Javascript file, and put the following script in the header:
<script type="text/javascript" src="js/swfobject.js"></script>
I then tried to embed the flash like this:
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("menu.swf", "menu", "215", "400", "0", "#ffffff");
so.addParam("wmode", "transparent");
so.write("flashcontent");
// ]]>
</script>
When I have this, the Flash just completely disappears off the page, even when the lightbox hasn’t been activated. Like it just isn’t there any more.