I've just finished a splash page that consists of a large SWF file and a footer. I used SWFobject to insert my Flash, and everything works perfect except for in IE7. When rolled over, a border appears over the SWF area, and a pop-up caption reads, 'click to activate and use this control.'
This would not be a problem normally, as the animation runs fine, but I have a <div> that sits on top of it that's used as a button. For this reason, I have used the "wmode" value=" opaque". Not sure if this has anything to do with it or not.
A brief depiction of my code is below.
Code:<div id="flash"> <object id="one0one" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="600"> <param name="movie" value="media/Progrphx_splash.swf" /> <param name="wmode" value="opaque" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="media/Progrphx_splash.swf" width="800" height="600"> <param name="wmode" value="opaque" /> <!--<![endif]--> <h1>content</h1> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div>







Bookmarks