Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default dropdown menu

    hi everyone, im s student doing an interactive cv as project and would like
    to have a dropdown menu in the project but all the help files dont explain them
    properly and i cant find any tutorials on them. all i need is a menu of 3 links
    to other parts of the score ubt im completly stumped. any help would be a great
    help
    cheers

    shyrocker Guest

  2. Similar Questions and Discussions

    1. List/Menu Form hides dropdown Menu
      http://2006.maximizer.com/about/customers/index.html when you scroll over 'company' in the main navbar at the top of the page, you'll see what...
    2. another dropdown menu post
      hello to the one who took the efford to read this. I created a dropdown in DW MX, and it works fine everywhere except, IE 5.0 on mac, it drives...
    3. Dropdown/Pulldown menu
      Could anyone please tell how to make dropdown/pulldown menu using Flex 1.5 thanx vijai
    4. Dropdown Menu (Noob)
      I have two tables linked together by an ID field. The first table contains reviewers. The second table contains reviews. I also have a drop down...
    5. Horizontal DropDown Menu
      OK, so I am definitely not a guru in writing DHTML JavaScript, and my boss likes the horizontal dropdown menu on the top navigation of...
  3. #2

    Default Re: dropdown menu

    There is no predefined function for this, other then making a program
    menu bar in a projector.

    There is a simple drop down selector behavior in the Library window.
    JB Guest

  4. #3

    Default Re: dropdown menu

    1. create a text field.

    2. copy and paste the below code into a behaviour

    3. put the behaviour into the text field created in 1.

    4. play movie, place mouse over text field then click. you should see - plate,
    cylider etc

    5. in the code change to what you want to appear in the list : set droplist
    = [ "??????? " , "????????", ] you can enter as many lines as you want

    Hope it helps



    on mouseDown

    set me = the castNum of sprite (the clickOn)
    -- Prep the dropdown list:
    set dropList = ["Plate Circular", "Plate Irregular", "Cylinder Straight" ]
    set temp = EMPTY
    repeat with x in dropList
    put x & RETURN after temp
    end repeat
    -- Remove the trailing "RETURN":
    delete char (length (temp)) of temp
    put temp into field me

    -- Enter main repeat loop:
    set oldLine = 0
    repeat while the stilldown
    if the mouseCast = me then set newLine = the mouseLine
    else set newLine = 0
    if oldLine <> newLine then
    if newLine then hilite line (newLine) of field me
    else put temp into field me
    set oldLine = newLine
    end if
    end repeat

    -- Clean up and close out:
    if newLine then put (line (newLine) of field me) into field me
    else put "Select from list" into field me

    end mouseDown





    iso96 Guest

  5. #4

    Default Re: dropdown menu

    thanks thats sorted
    cheers
    shyrocker Guest

  6. #5

    Default dropdown menu

    [url]http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm[/url]

    The above dropdown menu I have been trying to make it work with a frameless
    window ;ie to open a popup when the link is clicked,so the new link is in a
    frameless window.

    But can not get it to work has anyone an idea of how to make it work.

    Thanks
    Chris


    Joker7 Guest

  7. #6

    Default Re: dropdown menu

    Don't use menus like that. They embed all your links in javascript and will
    render your site non-spiderable unless you also have the same links in plain
    HTML somewhere.

    Learn how to do these menus the right way - use the methods taught and the
    free extensions here -

    [url]http://www.projectseven.com/tutorials/navigation/snapmenus/index.htm[/url]

    or

    [url]http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm[/url]

    and here's an example you can analyze -

    [url]http://www.projectseven.com/tutorials/autolayers/[/url]


    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "Joker7" <sat_ring@hotmails.com> wrote in message
    news:2rnqufF1bi2s2U1@uni-berlin.de...
    > [url]http://www.dynamicdrive.com/dynamicindex1/dropmenuindex.htm[/url]
    >
    > The above dropdown menu I have been trying to make it work with a
    > frameless
    > window ;ie to open a popup when the link is clicked,so the new link is in
    > a
    > frameless window.
    >
    > But can not get it to work has anyone an idea of how to make it work.
    >
    > Thanks
    > Chris
    >
    >

    Murray *TMM* Guest

  8. #7

    Default Re: dropdown menu


    "Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
    news:cj6e6l$gau$1@forums.macromedia.com...
    : Don't use menus like that. They embed all your links in javascript and
    will
    : render your site non-spiderable unless you also have the same links in
    plain
    : HTML somewhere.
    :
    : Learn how to do these menus the right way - use the methods taught and the
    : free extensions here -

    <quote>
    The PVII extensions used in this tutorial work in Dreamweaver versions 4.01
    through MX 2004. However, because of severe limitations in the Dreamweaver4
    rendering engine, Dreamweaver MX or higher is required to complete this
    tutorial.
    </quote>
    Has I only have Dreamweaver4 I can not use this :-(
    I don't have a problem with menus just need away to open a frameless window
    from it .

    Thanks
    Chris


    Joker7 Guest

  9. #8

    Default Re: dropdown menu

    You can use the methods with ordinary show-hide layers and they will work
    fine. All that means is that you cannot use their extensions with DW4, but
    the methods are universal.

    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "Joker7" <sat_ring@hotmails.com> wrote in message
    news:2ro0fcF1csknvU1@uni-berlin.de...
    >
    > "Murray *TMM*" <forums@HAHAgreat-web-sights.com> wrote in message
    > news:cj6e6l$gau$1@forums.macromedia.com...
    > : Don't use menus like that. They embed all your links in javascript and
    > will
    > : render your site non-spiderable unless you also have the same links in
    > plain
    > : HTML somewhere.
    > :
    > : Learn how to do these menus the right way - use the methods taught and
    > the
    > : free extensions here -
    >
    > <quote>
    > The PVII extensions used in this tutorial work in Dreamweaver versions
    > 4.01
    > through MX 2004. However, because of severe limitations in the
    > Dreamweaver4
    > rendering engine, Dreamweaver MX or higher is required to complete this
    > tutorial.
    > </quote>
    > Has I only have Dreamweaver4 I can not use this :-(
    > I don't have a problem with menus just need away to open a frameless
    > window
    > from it .
    >
    > Thanks
    > Chris
    >
    >

    Murray *TMM* Guest

  10. #9

    Default Dropdown menu

    Hello, ive just made my buttons in photoshop, light gray, and some shadows..
    now does buttons i want to use them as rollover buttons, but with the same
    colors and properties as the buttons.. so it matches my buttones.. ive already
    got a dropdown menu, but the background is white.. so any tutorials or examples
    o how to do this?
    [Q]Thanks[/Q]

    sna.xs Guest

  11. #10

    Default Re: Dropdown menu

    What popup did you use?

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "sna.xs" <webforumsuser@macromedia.com> wrote in message
    news:e74it3$mt8$1@forums.macromedia.com...
    > Hello, ive just made my buttons in photoshop, light gray, and some
    > shadows..
    > now does buttons i want to use them as rollover buttons, but with the
    > same
    > colors and properties as the buttons.. so it matches my buttones.. ive
    > already
    > got a dropdown menu, but the background is white.. so any tutorials or
    > examples
    > o how to do this?
    > [Q]Thanks[/Q]
    >

    Murray *ACE* 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