views:

94

answers:

1

It works on IE7 and mozilla, but on Chrome when u set param wmode: "transparent" it doesn't react to mouse event... Any solutions?

A: 

you can use html code like this:

 <object data="YourFile.swf" type="application/x-shockwave-flash" width="550" height="400">
        <param name="allowScriptAccess" value="sameDomain">
        <param name="quality" value="best">
        <param name="wmode" value="transparent">
        <embed src="" quality="high" wmode="transparent" pluginspage="http://www.adobe.com/go/getflash" type="application/x-shockwave-flash" width="550" height="400"></embed>
        <param name="bgcolor" value="#ffffff" />
        <param name="movie" value="YourFile.swf" />
    </object>
Amir Ajoudanian