Can you apply pop menu to text created in DreamweaverMX?

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default Can you apply pop menu to text created in DreamweaverMX?

    I have version Dreamweaver MX, version 6. I can only apply Show Pop Menu to an image - is there any way I can apply this behavior to text created in Dreamwaver?
    all alone Guest

  2. Similar Questions and Discussions

    1. Edit Sub Menu Created With Dreamweaver
      Does anyone know how to edit a sub menu that was created using Dreamweaver? I need to link a new page to the sub menu but I can't seem to find...
    2. css menu created in fireworks
      I'm sure there is a quick fix for this.... I have created a fireworks 8 pop up menu and exported to dreamweaver 8. This menu has been placed inside...
    3. Adding text to already created PDF
      HOW do i add text to a PDF that someone else has created? It is a form. I simply want to add a street address so that I don't have to retype it...
    4. Apply actions to static text?
      I have a situation where various static text objects need to be clickable to implement gotoAndStop actions. The Properties panel only has a field...
    5. Auto updating a popup-menu link in document created from a template. Possible?
      I have created a set of popup-menus in a document and saved it as a template. However when I create a new document from the template the...
  3. #2

    Default Re: Can you apply pop menu to text created inDreamweaver MX?

    I have MX 04 and can do it if the text is a link.
    bigj9901 Guest

  4. #3

    Default Re: Can you apply pop menu to text created inDreamweaver MX?

    Hello. I just had to remind myself how to do this. As you've found, DW won't
    let you add a behavior (pop-up menu items) to text, so if you want to make a
    horizontal navigation bar, for example, with text headings like "News" and
    "Events" that drop down with link selections, you need to make what is called a
    NULL LINK, then highlight the text (that is now a "fake link," for lack of a
    better way to put it) and add the on-mouseover behavior to it.

    There are two options for adding a null link: 1) Using a # sign in the link
    area of the Properties box, or 2) Putting javascript:; in the link area. The
    second is preferred, per DreamWeaver. When you do that, the text itself (News
    and Events, in the example above) will have the traditional underline on it of
    a link, so to remove this (since users are not going to click on those words,
    you just want them to mouseover them then have the behavior make the dropdown
    or pop-up menu items they can click appear), you need to add a bit of code in
    HTML view, per the notes below for both options. The first part beginning with
    the "a href" is all you need to be concerned with...DW writes in the rest of
    the onMouseOver="MM_showMenu...code. You just need to make sure that you add in
    style code after the a href null link code (style="text-decoration:none;
    color:white" ). I chose white for the text color because my navigation
    background was dark green. Hope this helps and made some sense.

    1) <a href="javascript:;" style="text-decoration:none; color:white"
    onMouseOver="MM_showMenu(window.mm_menu_0725154937 _0,0,19,null,'link1')"
    onMouseOut="MM_startTimeout();">News</a>

    2) <a href="#" style="text-decoration:none; color:white" name="link3"
    id="link2"
    onMouseOver="MM_showMenu(window.mm_menu_0725154937 _0,0,19,null,'link3')"
    onMouseOut="MM_startTimeout();">Events</a>

    Text

    lmohn Guest

  5. #4

    Default Re: Can you apply pop menu to text created inDreamweaver MX?

    Your explanation was very thorough. Thanks for taking the time to explain it so clearly. It worked! :sun;
    all alone Guest

  6. #5

    Default Re: Can you apply pop menu to text created inDreamweaver MX?

    I can make this work if I use behaviors for Netscape 6 and above. What is the common standard nowadays for browsers? Can't find this info on WebMonkey.
    all alone Guest

  7. #6

    Default Re: Can you apply pop menu to text created inDreamweaver MX?

    I can make this work if I use behaviors for Netscape 6 and above. What is the common standard nowadays for browsers? Can't find this info on WebMonkey.
    all alone 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