Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default Dropdown list

    I would like to display 15 items (lines) in the dropdown list, but by
    default the list displays only 11 lines. How can I have all the 15 items
    displayed in my dropdown list ?

    Thanks for your help.


    Tapiwa JONGWE Guest

  2. Similar Questions and Discussions

    1. dropdown list problem
      hi i have a problem with dropdown list in dreamweaver. i.e, how can i avoid the menu dropdown going backwards to the dropdown listwhich is...
    2. DataGrid with Dropdown list
      Any Help is appreciated! I have a datagrid with Drop down list and a remove hyperlink as two columns. When I remove the row of the datagrid by...
    3. Refresh dropdown list
      On a cfform I have a cfselect dropdown . The situtation is that when an option isn't listed I have a "Add button" next to the drop down that...
    4. dropdown list can't selected.
      I have a EditItemTemplate in a datagrid that contain a dropdown that bound to a dataset. In that grid I have a ItemCreated to handle the dropdow...
    5. Binded DropDown list
      Hi I'm using a datagrid with a dropdown list in it. The dropdown list is filled with values from SQL database, it's autopostback property is set to...
  3. #2

    Default Re: Dropdown list

    Not really an asp question but in the select tag put 'size="15"'.

    If it is ASP related and you are dragging the values out of a db/array, then
    you could have the logic :-

    If array length => 15 then
    Size = 15
    else
    Size = array length
    End if

    Otherwise you'd have loads of empty cells in the drop down.

    Hope that helps

    Stu

    "Tapiwa JONGWE" <t.jongwe@unesco.org> wrote in message
    news:u#knARPfDHA.2248@TK2MSFTNGP09.phx.gbl...
    > I would like to display 15 items (lines) in the dropdown list, but by
    > default the list displays only 11 lines. How can I have all the 15 items
    > displayed in my dropdown list ?
    >
    > Thanks for your help.
    >
    >

    Stuart Palmer Guest

  4. #3

    Default Re: Dropdown list

    I'd say that's just the nature of the browser. Perhaps it would be
    different in a higher resolution.

    You could use a listbox style select.
    <select size=20>

    Ray at home

    "Tapiwa JONGWE" <t.jongwe@unesco.org> wrote in message
    news:u#knARPfDHA.2248@TK2MSFTNGP09.phx.gbl...
    > I would like to display 15 items (lines) in the dropdown list, but by
    > default the list displays only 11 lines. How can I have all the 15 items
    > displayed in my dropdown list ?
    >
    > Thanks for your help.
    >
    >

    Ray at home Guest

  5. #4

    Default Dropdown list

    I have a field with names in it, and I dropped a dropdown list behavior on it. Now I want to click on each name and then go to a another movie. How do I do?
    If I play the movie and clicks on a name in the dropdown list a message window comes up and says;
    Script error: Handler not defined. How do I do that?

    I´m new with Lingo and still learning so please help me.



    Susnes webforumsuser@macromedia.com Guest

  6. #5

    Default Re: Dropdown list

    Try this site. Lots of great stuff, including drop-down code.

    [url]http://www.lingoworkshop.com/code/widget_generic.asp[/url]

    I'm not sure what handler you're using to get a handler not defined error,
    but if you've already got the drop-down part working the way you want it to,
    simply tell the program to go to the next movie in a mouseUP command, like
    this:

    on mouseUP me
    go to frame "WhateverFrame" of movie "WhateverMovie"
    end

    HTH,
    Matt

    Susnes <webforumsuser@macromedia.com> wrote in message
    news:bn8orq$du2$1@forums.macromedia.com...
    > I have a field with names in it, and I dropped a dropdown list behavior on
    it. Now I want to click on each name and then go to a another movie. How do
    I do?
    > If I play the movie and clicks on a name in the dropdown list a message
    window comes up and says;
    > Script error: Handler not defined. How do I do that?
    >
    > I´m new with Lingo and still learning so please help me.
    >
    >

    MGaston Guest

  7. #6

    Default Dropdown list

    Hello there.

    I have a drop down list, the data is populated from an xml file. It
    works fine.

    Now I'm trying to select one of the options in the drop down list, click
    on a button, and then have the selected data saved to another xml file.

    However, the data saved in the second xml file only returns the first
    dropdown list data instead of the value that belongs to the selected
    item.

    What am i missing here?

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    rain lee 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