|
|
Re: <div> over flash animation: msg#00021
mozilla.devel.dom
|
Subject: |
Re: <div> over flash animation |
Thanks a lot! This is what I need.
bc wrote:
On 10/6/2004 3:42 AM, Mike Duganets wrote:
Christian Biesinger wrote:
Mike Duganets wrote:
Using
<param NAME="wmode" VALUE="transparent">
also didn't help.
Which OS and which flash player version are you using?
MS Windows XP SP1
Macromedia Flash Player 7.0.19.0
Gecko/20040913 Firefox/0.10
your param element is for the object tag which is probably an activex
component. you need to specify wmode as an attribute on the embed tag.
modifying the example in
<http://devedge.netscape.com/viewsource/2002/markup-and-plugins/#embed>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0"
width=366 height=142 id="myFlash">
<param name=movie value="javascript_to_flash.swf">
<param name=quality value=high>
<param name="swliveconnect" value="true">
<param NAME="wmode" VALUE="transparent">
<embed src="javascript_to_flash.swf" quality="high" width="366"
height="142"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/downloads/"
name="myFlash" swliveconnect="true"
wmode="transparent">
</embed>
</object>
|
|