How to make flash movies always appear below the html content in a web page?
Frustrated with Flash movie appearing on top of html divs in your web pages? For instance you might have a flash movie embedded in your website and also have a fixed position html footer at the bottom of the web page and when the visitor scrolls the page the flash movie is appearing on top of the footer bar instead of appearing below it.
Well, the solution to make your flash movies always appear below the html in the page is to set the WMODE property of the flash movie to opaque, thats it! Just set the wmode value in the object tag and the embed tag as shown below.
<object width="550" height="280"> <param NAME="wmode" VALUE="opaque"> <param name="movie" value="http://www.mydomain.com/mymovie.swf"> <embed pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="opaque" src="http://www.mydomain.com/mymovie.swf" width="550" height="280"> </embed> </object>







No Comments Yet - be the First!