Adding a dropdown menu in Dreamweaver CS3

I already have a navigation bar and some links on it and I
want to add a pop-up menu to one of those links.
Unfortunately Adobe has removed the MX pop-up menu
functionality from Dreamweaver CS3 and the only way that I can see
to make pop-up menus is to create a brand new complete menu bar
using sprytes.
But I don't want a complete menu bar, I want to add some
popup menu items to an existing navigation link.
Does anyone know how to do this with Dreamweaver CS3?
Thanks

Any sample code in SDK to add a drop down menu to a toolbar button in the plugin? Basically, I am trying to do something like below. A button with a dropdown sub menu and hook up some events to each submenu.
I could get some help in SDK to build menu items and attach it to a main menu, but I am not sure whether I can use the same code to attache it to a toolbar button something like "Secure" button above in the screen shot.
        AVMenuItem MenuItem1 = AVMenuItemNew ("SubMenu Item 1", "ADBE:submenu1", MainMenu, true, NO_SHORTCUT, 0, NULL, gExtensionID);
        AVMenuItem MenuItem2 = AVMenuItemNew ("SubMenu Item 2", "ADBE:submenu2", MainMenu, true, NO_SHORTCUT, 0, NULL, gExtensionID);
        AVMenuAddMenuItem (MainMenu, MenuItem1, APPEND_MENUITEM);
        AVMenuAddMenuItem (MainMenu, MenuItem2, APPEND_MENUITEM);
A sample code snippet will also help me. Thanks in advance.

Similar Messages

  • Dependent Drop-Down Menu in Dreamweaver CS3 and ADDT

    Hi All,
    I have been trying to create a dependent drop--down menu so that when I select an item the corresponding information would populate the other field or fields. So far I have tried to use the tutorial posted on the link below by Waleed Barakat but I have had no sucess.
    http://www.tutorials-expert.com/tutorial/20354/-How-To-Create-Dependent-Dropdown -ListMenu-Forms.html
    I wanted to know if anyone has something else that I can review to help me in this process.
    Thanks

    Please refer to this article (http://forums.adobe.com/message/1069624#1069624) for information on how your tables should be set up.
    Date: Wed, 10 Jun 2009 00:49:28 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: Dependent Drop-Down Menu in Dreamweaver CS3 and ADDT
    Hi Georgev63,
    I followed the instructions to the link you sent me and it did not produce the results I had hope for.
    The directions are pretty straight forward and I attempted the steps several times with the same results.
    Basically the field that supposed to be the detail field is blank rather than having the ID of the master field.
    Any further suggestions would be much appreciated.
    Thanks
    E.
    >

  • Drop Down Menu in Dreamweaver CS3

    Is it possible to add a Drop Down Menu in Dreamweaver CS3 in an already existing navigation bar?

    Ok, I made one a link. See below...
    <div id="nav">
        <ul>
          <li class="style1"><a href="index.html">Home</a></li>
          <li class="style1"><a href="Vinyard/vinyard.html">Vineyard</a></li>
          <li class="style1"><a href="http://millnerheritage.com/Wines/winesTest.html">Winery</a><a href="Winery/winery.html"></a></li>
          <li class="style1"><a href="Wines/winesTest.html">Wines</a></li>
          <li class="style1"><a href="Wines/winesTest.html">Events</a></li>
          <li class="style1"><a href="Heritage/heritage.html">Heritage</a></li>
          <li class="style1"><a href="Classes/classes.html">Classes</a></li>
          <li class="style1"><a href="photos.html">Gallery</a></li>
          <li class="style1"><a href="Links/links.html">Links</a></li>
          <li class="style1"><a href="Order Online/order.html">Order Online</a></li>
          <li class="style1"><a href="Contact/contact.php">Contact<br />
          </a>        </li>
        </ul>

  • Need help on how to create dropdown menu in dreamweaver 9

    Hello Forum Members
    I am working on dreamweaver , making my website by using dreamweaver 9 .
    My problem is, i want to create a dropdown menu but when i move my cursor on any item then the drop down links appears on the same item itself and that item diappears.
    For Example my menu is like --- item1 item 2 item 3 item4 item5
    item2.1 Item3.1 item4.1
    item2.2 item3.2 item4.2
    now when i move my cursor on any of these menu headings (like item 2, item 3, item 4) which has drop down links the main menu item disappears and the drop down links (item 2.1, item2.2 like wise) reflects on the place of that (item2) menu item.
    Please help me with this and not with the scirpt that would be the last option because i do not have any knowledge of html. Please tell me the feature in dreamweaver 9 from where i can correct it.
    Thanks In Advance
    Sean

    Please Help

  • Creating dropdown menu in Dreamweaver CS5 that is compatible with iPad

    The spry menu bar on my website does not work properly on iPads or other touchscreen devices. Some of the solutions I've been looking at tell me to download the Widget Browser and use Spry MenuBar 2.0. However, I cannot find the Widget Browser to download it and move forward.
    Is the Widget Browser no longer available? If not, please could someone suggest a solution to create both vertical and horizontal menus that work on touchscreen devices. Simple solutions, please, because I'm not as technical as I'd like to be.
    Thank you!

    Primer for using jQuery Plugins
    http://alt-web.blogspot.com/2012/11/primer-for-using-jquery-plug-ins.html
    jQuery Superfish (touchscreen friendly drop menus)
    http://users.tpg.com.au/j_birch/plugins/superfish/
    Nancy O.

  • Tree Menu in Dreamweaver CS3

    Hello I am having difficulty installing the following example:
    1. http://code.stephenmorley.org/javascript/collapsible-lists/
    In the section 'Using Collapsible Lists' how and where do I add the following lines:
    CollapsibleLists.apply();
    CollapsibleLists.applyTo(document.getElementById('newList'));
    Thanks, I presume this to be all I need to make this work.

    As with most widgets, there are three parts to make them work, namely
    markup (HTML)
    styling (CSS)
    script (JS)
    Markup
    <ul class="collapsibleList">
      <li>
      Parent item
      <ul>
      <li>Child item</li>
      <li>Child item</li>
      </ul>
      </li>
      <li>
      Parent item
      <ul>
      <li>Child item</li>
      <li>Child item</li>
      </ul>
      </li>
    </ul>
    Styling
    .collapsibleList li{
      list-style-image:url('button.png');
      cursor:auto;
    li.collapsibleListOpen{
      list-style-image:url('button-open.png');
      cursor:pointer;
    li.collapsibleListClosed{
      list-style-image:url('button-closed.png');
      cursor:pointer;
    Script
    <script type="text/javascript" src="CollapsibleLists.js"></script>
    However, the link to the script is a passive one that needs to be aroused with a trigger. We call this trigger a Constructor. The Constructor creates an instance of the widget using
    <script>CollapsibleLists.apply();</script>
    or more specifically targeting an element with an ID of 'newList'
    <script>CollapsibleLists.applyTo(document.getElementById('newList'));</script>
    CSS is placed in the HEAD element
    HTML is placed in the BODY element
    JS can be placed anywhere within your document. However, because it takes time to load the scripts and you want the user to experience fast loading times, I tend to place the scripts at the bottom of the document, just above the closing BODY tag. Many others tend to place the scripts following the CSS in the HEAD element.

  • Dropdown menu problem in internet explorer

    i'm pretty new to css, and i'm having trouble in regards to
    the dropdown menu option (dreamweaver cs3). i've made a basic
    template, and everything looks fine (preliminarily!) in firefox,
    but in IE the dropdown menus have scrollbars and the word "false"
    floating in them. they're also positioned wrong. any advice on
    which styles are the problem? i've tried troubleshooting but its
    had little effect. here is the link:
    http://happyowlglass.com/happyowl-template.html
    many thanks!

    Have a look at the following
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inline;
        f\loat: none;
        background: #FFF;
    The original value is left.
    Gramps

  • Dropdown Menu CSS Style

    Hi!
    I am trying to create a dropdown menu in Dreamweaver. I have watched several tutorials and read many how-to guides and my html looks fine, but editing the style is really throwing me off. I am a beginner to Dreamweaver, so I am unsure of the properties I need to make this right.  The code below, when I hover over the first button the dropdown menu goes behind the other two buttons.  I need the dropmenu to go off to the side of the buttons and down.  If not that, I can align the buttons to go horizontal, so they aren't being covered. I hope that makes sense.
    Thank you in advance!! 
    -M
    HTML
      <div class="dropdown" id="dropdown" style="text-align: left;">
    <ul>
            <li><a href="#">Americas</a>
               <ul>
                       <li><a href="#">Connecticut</a></li>
                        <li><a href="#">Ohio</a></li>
                        <li><a href="#">Vermont</a></li>
                        <li><a href="#">California</a></li>
                        <li><a href="#">Canada</a></li>
                        <li><a href="#">Brazil</a></li>
               </ul>
            </li>
    </ul>
      <ul>
           <li><a href="#">China</a>
                 <ul>
                         <li><a href="#">China</a></li>
                   </ul>
            </li>
    </ul>
    <ul>
            <li><a href="#">Europe</a>
                <ul>
                   <li><a href="#">France</a></li>
                   <li><a href="#">UK</a></li>
                </ul>
            </li>
    </ul>
    </div>
    STYLE
    #dropdown {
    margin: 0;
    width: 150px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    #dropdown ul {
    margin: 0;
    padding: 0;
    line-height: 30px;
    #dropdown li {
        margin:0;
        padding:0;
        list-style:none;
        float:left;
        position:relative;
    #dropdown ul li a {
    text-align: center;
    height: 30px;
    width: 150px;
    display: block;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    text-shadow: 1px 1px 1px #000;
    background: #CCC;
    #dropdown ul ul {
    position:absolute;
    visibility:hidden;
    top:32px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
      #dropdown ul li:hover ul {
    visibility:visible;
    position:absolute;
       #dropdown li:hover {
    background: #7D92C6;
    float: left;
        #dropdown ul li:hover ul li a:hover {
        color:#000;
        background:#7D92C6;
      #dropdown a:hover {  
      color:#000;
      background: #7D92C6;
    .clearFloat {
        clear:both;
        margin:0;
        padding:0;

    Are you doing this as an execise in learning or is it for a real website. I ask because if the latter why not just use a tested and proven commercial product and be done with it?  I have used the PVII (http://www.projectseven.com) products for years and can't recommend them highly enough.

  • Populating my dropdown menu from MySQL database using jsp

    I my database i have a table of users and i want everytime a user is added the dropdown menu gets updated, this is make updating of user's profile easy. I tried the one bellow but still get me 80 errors:
    ----connection String------
    <select name="userName" id="userName">
    <% for(int i=1; i<=resultsList; ++i){%>
    <option value="<%=out.println(rs.getUserName(1))%>"><%=out.println(rs.getUserName(1))%></option>
    <option value="<%=out.println(rs.getUserName(i))%>"><%=out.println(rs.getUserName(i))%></option>
    <%}%>
    </select>
    Pls i need help

    80 errors, you say?
    I'm not a fan of writing muddled jsp pages that refer to the database layer. If you're willing to learn JSF or some other web framework, you'll being able to write better code and never use a scriptlet again.

  • Using fluid grid layout in Dreamweaver CC - how do I create a dropdown menu within my main navigation?

    I am new to using the responsive fluid grid layouts in Dreamweaver CC - and I am unable to find any information on creating a dropdown menu within my main navigation.
    Any ideas?

    You'll need to find a menu system that is responsive and mobile friendly for touch screen devices.
    If you have a budget to work with, Project Seven's Pop-Menu Magic3 is a commercial extension for DW that works great out of the box.
    http://projectseven.com/products/menusystems/pmm3/index.htm
    If you don't have a budget, you'll need to create a desktop menu and add a jQuery plugin for mobile devices.
    Basic CSS Drop Menu
    http://jsfiddle.net/mD4zW/28/
    jQuery MeanMenu for mobile/tablet devices
    MeanThemes | MeanMenu
    This is a working example inside a FluidGrid Layout (resize viewport)
    Alt-Web :: Fluid Grid Test
    Nancy O.

  • Adding MP3 in Dreamweaver CS3

    Hi,
    I am new to this forum but I really need some help.
    I am trying to link some mp3s onto my website using Dreamweaver CS3. I have tried two options:
    Using a Flash button
    For example: <a href="../music/track.mp3">Services</a>
    Both instances do play the mp3 but they both open in a new window. They both open Windows Media Player.
    Is there anyway I can press the play button without opening a new windows? I just want to be able to stop, play, pause, etc. just from that button.
    Didn't consider embedding the files because I'll have a number of them a page.
    Any help?

    Thanks a million.
    Date: Tue, 9 Mar 2010 11:40:18 -0700
    From: [email protected]
    To: [email protected]
    Subject: Adding MP3 in Dreamweaver CS3
    Get Wimpy MP3 Player.  A single, Flash based, streaming media player can handle all your audio files from a playlist. Easy to set-up, dirt simple to add or remove media files later.
    http://www.wimpyplayer.com/affiliates/idevaffiliate.php?id=836
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com
    >

  • Dreamweaver CS3 Menu's not working

    Using shortcuts or even manually clicking on the menu items
    to say "Put" a file, it just doesn't work. I don't get it. It
    worked fine... then (if memory serves me) when I downloaded a CS3
    update to all my cs3 applications, it stopped working.
    Any ideas what this is and how to fix it, besides
    uninstalling the update?
    JP

    Are you working from a site definition? Can you connect to
    the remote site?
    Can you GET files from it? Does this happen with all your
    sites? Does this
    site have a testing server defined?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "joshperkins40207" <[email protected]> wrote
    in message
    news:f4ndd2$8vq$[email protected]..
    >I don't know what I'm saying. Bottomline, some menus are
    not working. I'm
    >on
    > a mac.
    >
    > CMD+SHIFT+U should upload (put) a file. It doesn't work.
    Well before you
    > think I changed my shortcuts, going to the menu and
    choosing SITE > PUT
    > doesn't
    > work either.
    >
    > A couple other things like right clicking on the Files
    area to "add a
    > folder"
    > or "create a file" doesn't work. I click it... nothing
    happens.
    >
    > Dreamweaver CS3 is the only software I am having this
    problem with.
    >

  • Dreamweaver CS3 (Mac) and Menu Master

    Since my work with Dreamweaver involves the very frequent
    repetition of certain sequences of steps, I have greatly speeded up
    my workflow by recording and storing a number of special commands
    accessible via tthe Commands menu. Unfortunately Dreamweaver does
    not allow the assignment of keyboard equivalents for user-created
    commands, so until now I have relied on the haxie Menu Master to
    make good this deficiency. But Menu Msster fails to work properly
    with Dreamweaver CS3 for the Mac. I have alerted Unsanity about
    this problem, but I don't think they have taken my complaint very
    seriously. I suspect that other Dreamweaver users have used Menu
    Master for the same purpose. If so, I would appreciate it if you
    would contact Unsanity too. A bunch of similar complaints might get
    thier attention.

    Hi. I am experiencing the very same problem. No issues for
    years up until recently - but my problems started not long after I
    installed the latest upgrade for Mac OS 10.5.4 to 10.5.5 - I am
    going to use Time Machine to revert back to 10.5.4 it may not be
    the answer, nor a long-term solution but it driving me nuts.
    I am currently deleting sites out of my site manager and then
    reloading them from the STE file everytime I need to work on them.
    I have read that this problem existed in Dreamweaver 8 on Windows,
    but an update sorted it out - lets hope an update appears soon to
    fix this problem.

  • Iweb + dreamweaver CS4 + dropdown menu not working on all pc's

    I created a dropdown-menu on CS4 DW, pasted it in html doc. and is part of my iWeb created site.
    Looks ok on apple: safari/firefox/iphone.. but on any pc does not matter which browser, it looks awfull, and the jumpmenu simply is not working.. what can I do to correct this?
    Thanks.

    By jumpmenu are you referring to the navbar at the top? It's well known that IE is not friendly with iWeb's navbar. The workaround for that is to create your own Text Based Navbar.
    As far as the drop down menu, is it java based or html based? I'm not familiar with what does an does not work with IE as I don't do windows so can't help you anymore there.

  • Adding .swf file to Dreamweaver CS3 page?

    In Dreamweaver MX, I used to import .swf files, view them,
    and they worked, both in Dreamweaver and on the web. But trying out
    Dreamweaver CS3, ,swf files I import don't seem to work for me.
    They're visibly there when I view the Dreamweaver page, but they do
    not play in any browser. Obviously, something has changed. What?
    What do I need to do to get a .swf file to play?
    Thanks for your help.

    > That did not make a .swf file visible. Here's a sample
    of the problem:
    >
    http://www.multiminds.org/newtoncornerneighborhood/test.html
    Your code is sticking some stuff in there that my code
    doesn't
    for example the version is different (that should be okay if
    you have
    Flash 10 installed, but also notice the path on your script:
    http://download.macromedia.com/pub/shockwave/cabs/director/sw.cab#version=10,1,1,0
    which is going to director instead of flash.
    I suggest you try my code, of course changed to reference
    your flash file.
    Here's my code for a flash file:
    <SCRIPT TYPE="text/javascript">
    AC_FL_RunContent(
    'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','760','height','200','title','Sack
    Law Firm, NYC and Westchester
    County','align','LEFT','src','media/sacklawfade4','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','media/sacklawfade4'
    ); //end AC code
    </SCRIPT><NOSCRIPT><OBJECT
    CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    CODEBASE="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    WIDTH="760" HEIGHT="200" ALIGN="LEFT" TITLE="Sack Law Firm,
    NYC and
    Westchester County">
    <PARAM NAME="movie" VALUE="media/sacklawfade4.swf">
    <PARAM NAME="quality" VALUE="high">
    <EMBED SRC="media/sacklawfade4.swf" WIDTH="760"
    HEIGHT="200"
    ALIGN="LEFT" QUALITY="high"
    PLUGINSPAGE="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    TYPE="application/x-shockwave-flash"></EMBED>
    </OBJECT>
    </NOSCRIPT>

Maybe you are looking for

  • Hiding a web item through the command line URL

    We use the Web API and command line processing heavily to pass in different filter values, variable values, data providers, etc. to our web reports.  I had a requirement within a given area to launch our web reports with the Navigation block visible

  • Updated OS to 10.1.0.418​1 and can no longer send texts

    I got prompted for a BB10 OS update to version 10.1.0.4181. I downloaded and installed the OS without any issues, took about 25-30 minutes. Now I can no longer send or receive text messages (every other feature seems to be working fine, including ema

  • Ipod Sounds Problem (Noise) OMG PLS HELP !!!

    Ok guys, I have a Ipod Classic 80G ... All the functions works fine, songs, sync, movies, pictures (yay) ! But i week ago my ipod start to make a noise sound when i play my musics/movies ! The noise sounds is similar when ur listening to a very bad q

  • Web DynPro - Navigation to Tabstrips

    Hi All, I have a view that has Tabstrips, around 6 tabstribs. When I am in an Sales Order Tab all the sales orders are listed. I select one sales order and click display details button. When I do this I need to move automatically to Search Tab and in

  • Cant find component

    Hello. I have a page: <?xml version='1.0' encoding='UTF-8'?> <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"> <jsp:directive.page contentType="t