Hello http://www.allthepages.com/1/With_FL/html/about.html on this page you will see a flash part and html part, the html part when you open the site it shows above the flash, but when you click on the flash it will hide the html form, try it by clicking on the flash part. How can I keep html always on top of flash file this is the page code thanks for you help <!-- ImageReady Slices (design_studio_page2_fl.psd) --> <TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 align="left" style="margin-left:5px"> <TR> <TD> <OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="500" HEIGHT="465" id="0434_3" ALIGN=""> <PARAM NAME=movie VALUE="../flash/0434_3.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> <EMBED src="../flash/0434_3.swf" quality=high bgcolor=#FFFFFF WIDTH="500" HEIGHT="465" NAME="0434_3" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED> </OBJECT></TD> <TD align="left" bgcolor="red"><IMG SRC="images/wel2.jpg" WIDTH=279 HEIGHT=465 ALT=""></TD> </TR> <TR> <TD COLSPAN=2> <IMG SRC="images/wel3.jpg" WIDTH=779 HEIGHT=126 ALT="" border="0" usemap="#map"></TD> </TR> </TABLE> <div id="tit" style="position:absolute;z-index:10;left:191;top:182;width:611;height:500;background:URL red;padding:0"><iframe src="about_add.htm" width="100%" height="340" frameborder="0" scrolling="no" style="padding:0;"></iframe></div> <!-- End ImageReady Slices --> <MAP NAME="map"> <AREA SHAPE="rect" ALT="" COORDS="717,104,763,118" HREF="contact.html"> <AREA SHAPE="rect" ALT="" COORDS="650,103,706,118" HREF="portfolio.html"> <AREA SHAPE="rect" ALT="" COORDS="607,104,643,118" HREF="about.html"> <AREA SHAPE="rect" ALT="" COORDS="545,105,599,119" HREF="welcome.html"> </MAP> </BODY> </HTML>
Add <param name="wmode" content="opaque"> and to the embed element, add the attribute wmode="opaque". cheers, gary
See the param elements and the embed element attributes? <OBJECT classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="500" HEIGHT="465" id="0434_3" ALIGN=""> <PARAM NAME=movie VALUE="../flash/0434_3.swf"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> [color=red]<param name="wmode" value="opaque">[/color] <EMBED src="../flash/0434_3.swf" quality=high bgcolor=#FFFFFF WIDTH="500" HEIGHT="465" NAME="0434_3" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" [color=red]wmode="opaque"[/color]> </object> Code (markup): cheers, gary