Results 1 to 2 of 2

Thread: Get DHTML Ad Box in the font of a Flash file.

  1. #1
    Join Date
    Sep 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Get DHTML Ad Box in the font of a Flash file.

    Godday, i use this script on my website
    http://www.dynamicdrive.com/dynamicindex11/dhtmlad.htm
    But its in the bagrund of my SWF file
    See here
    http://www.daah.dk/index.php?params=...le-Struggle-2/

    How can i get it in the front please help thanks

  2. #2
    Join Date
    Oct 2007
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You use:
    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="530" height="415">
    <param name="movie" value="http://www.daah.dk/swf/bubble-struggle-2.swf">
    <param name="quality" value="high">
    <param name="menu" value="true">
    <embed
    width="530"
    height="415"
    src="http://www.daah.dk/swf/bubble-struggle-2.swf"
    quality="high"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"
    >
    </embed>
    </object>

    Try with:
    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="530" height="415">
    <param name="movie" value="http://www.daah.dk/swf/bubble-struggle-2.swf">
    <param name="quality" value="high">
    <param name="menu" value="true">
    <param name="wmode" value="transparent">
    <embed
    width="530"
    height="415"
    src="http://www.daah.dk/swf/bubble-struggle-2.swf"
    quality="high"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"
    wmode="transparent"
    >
    </embed>
    </object>


    What?
    Flash, by default, is not treated like other elements in browser. It always use "highest-possible-z-layer" (like DVD video on screen - it is not same as excell stylesheet).
    But with wmode transparent (or opague), you put flash "down"

    BR, Dusan

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •