Flash form overlapped by DHTML menu

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Flash form overlapped by DHTML menu

    This may be a dumb question. If so I apologize in advance. I have a flash
    form on a page that has a DHTML menu. When the user mouses over the menu then
    the dropdown menu items are hidden behind the flash form. My understanding of
    CSS is that z-index is only used with absolute positioning. The positioning of
    the flash form may not always be the same so I am hesitant to try to absolute
    position it. Is there a way to control this problem without absolute
    positioning and z-index?

    --Thanks

    ccsimmons Guest

  2. Similar Questions and Discussions

    1. DHTML menu and flash
      hello! I recently created a web site where I just used dreamweaver's built in dhtml menu to create a dropdown menu....I have an embedded flash file...
    2. DHTML menu covers Flash movie
      I'm an amateur just trying some of these technologies. I created a Web page with a nice DHTML drop-down menu. Then I added a jazzy Flash text...
    3. DHTML Menu Interferes with Flash
      I have put a flash swf on a page which has a dhtml drop down menu on the top. The flash file hides the dhtml dropdowns below it. I have tried...
    4. Flash Interferes with DHTML menu!
      I have put a flash swf on a page which has a dhtml drop down menu on the top. The flash file hides the dhtml dropdowns below it. I have tried...
    5. Submenus on DHTML menu hide behind flash [ Help ]
      Ok I got a DHTML menu ( horizontal ) with drop down sub menus that I pulled off of Dynamic Drive. The problem is if I have a flash animation or movie...
  3. #2

    Default Re: Flash form overlapped by DHTML menu

    AHA!!!

    Use:

    wmode="transparent" in the <cfform> tag like so:

    <cfform name="ReportBug" timeout="5" height="400" format="flash" method="post" action="BugForm.cfm" wmode="transparent">
    ccsimmons Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139