I have a project that has a transparent swf over the left nav. The actual content for the swf is “included” from a seperate html file containing the the DIV that holds the CSS for the transparent swf ( contained in the head tag ). My problem is that the hard coded nav on the left is visible but i cant interact with it ( no mouse events ) and I believe it is something to do woth the fact that there is a transparent SWF over it. Can anyone advise on how to get my nav working properly without building the nav into the swf that is displayed over it?..perhaps there are some embed or css settings that I missed?..
here is the code im using…
the css…
#animation {
float: left;
left: -138px;
top: 187px;
width: 1245 px;
height: 420 px;
position: absolute;
z-index: 0;
}
the div…
<div id=“animation”>
<object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0” name=“laborDay” width=“1245” height=“420” id=“laborDay”>
<param name=“movie” value="//content.childrensplace.com/www/b/TCP/images/media/101309_Flashion_Seasonal_final11.swf" />
<param name=“quality” value=“high” />
<param name=“LOOP” value=“false” />
<param name=“wmode” value=“transparent” />
<param name=“allowScriptAccess” value=“always” />
<param name=“allowScriptAccess” value=“sameDomain” />
<embed src="//content.childrensplace.com/www/b/TCP/images/media/101309_Flashion_Seasonal_final11.swf" width=“1245” height=“420” loop=“false” quality=“high” pluginspage=“http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash” type=“application/x-shockwave-flash” name=“laborDay” wmode=“transparent”></embed>
</object>