Need Help, coder or designer please

Discussion in 'HTML & Website Design' started by charbello, Mar 23, 2007.

  1. #1
    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="clsid:D27CDB6E-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>
     
    charbello, Mar 23, 2007 IP
  2. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #2
    Add <param name="wmode" content="opaque"> and to the embed element, add the attribute wmode="opaque".

    cheers,

    gary
     
    kk5st, Mar 23, 2007 IP
  3. charbello

    charbello Peon

    Messages:
    126
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Hello still not sure where to add it, can you please explain more
     
    charbello, Mar 23, 2007 IP
  4. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #4
    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
     
    kk5st, Mar 23, 2007 IP
  5. charbello

    charbello Peon

    Messages:
    126
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    thanks gary I really appreciate that
     
    charbello, Mar 24, 2007 IP