Results 1 to 5 of 5

Thread: Help with DD Window Widget

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

    Default Help with DD Window Widget

    1) Script Title: DHTML Window widget (v1.01)

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...ndow/index.htm

    3) Describe problem:

    Hi All, I come to you with a ridiculous html code based enquiry... lol... I have tried to use the code from the window widget to launch an internal pop-in/pop-over window within the existing page that we want to use to notify customers visiting our site of our specials... however, I’m having some trouble orientating it properly within the html code to bring it to the front of the flash element.

    If you check, http://www.gcphotography.com.au/indextest.html you can see, it’s currently set to launch google.com within the internal window of the browser, however, half/3-quarters of the element are buried behind the flash frame... and I want the window to be the dominate element... any ideas how I could bring it to the front?

    Cheers,

    Matt

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    add:

    <param name="wmode" value="transparent">

    to both object tags.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Mar 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks mate, really appreciate the feedback, however, I'm not brilliant with HTML coding... so where abouts would I put the Param Name in my html here:

    <body>
    <table width="100%" style="background-image: url(images/b-dr.gif); background-repeat: repeat-x; background-position: bottom;height:750px" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="50%" style="height:100%" valign="top"></td>
    <td width="766" style="height:750px" valign="top">
    <object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
    width="766" height="750" align="baseline">
    <param name="movie" value="main3.swf">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <!--[if !IE]> <-->
    <object data="main3.swf"
    width="766" height="750" type="application/x-shockwave-flash">
    <param name="quality" value="high">
    <param name="menu" value="false">
    <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer"><param name="BGCOLOR" value="#F0F0F0">
    FAIL (the browser should render some flash content, not this).
    </object>
    <!--> <![endif]-->
    </object>
    </td>
    <td width="50%" style="height:100%" valign="top"></td>
    </tr>
    </table>

    <body onblur="self.focus();">
    <script type="text/javascript">
    var googlewin=dhtmlwindow.open("googlebox", "iframe", "http://google.com", "Google Web site", "width=700px,height=450px,left=150px,top=10px,resize=1,scrolling=0", "recalonload")
    </script>

    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
    </script>
    <script type="text/javascript">
    _uacct = "UA-1171114-1";
    urchinTracker();
    </script>

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    You have two object tags:

    Code:
    			<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
               codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
               width="766" height="750">
    			<param name="movie" value="main3.swf"> 
    			<param name="quality" value="high">
    			<param name="menu" value="false">
    			<!--[if !IE]> <-->
    			<object data="main3.swf"
    					width="766" height="750" type="application/x-shockwave-flash">
    			 <param name="quality" value="high">
    			 <param name="menu" value="false">
    			 <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">
    			 FAIL (the browser should render some flash content, not this).
    			</object>
    			<!--> <![endif]-->
    		   </object>
    Add:

    Code:
    <param name="wmode" value="transparent">
    to both of them:

    Code:
    			<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
               codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
               width="766" height="750">
    			<param name="movie" value="main3.swf"> 
    			<param name="quality" value="high">
    			<param name="wmode" value="transparent">
    			<param name="menu" value="false">
    			<!--[if !IE]> <-->
    			<object data="main3.swf"
    					width="766" height="750" type="application/x-shockwave-flash">
    			 <param name="quality" value="high">
    			 <param name="wmode" value="transparent">
    			 <param name="menu" value="false">
    			 <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">
    			 FAIL (the browser should render some flash content, not this).
    			</object>
    			<!--> <![endif]-->
    		   </object>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Mar 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks Champ, that did the trick perfectly

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
  •