Drop down help

How do i get the combo box to work?
I know how to label things but thats as far as i can get..
i need some help!
All i need is when someone picks an item from the drop down
list, that it goes to that frame associated with that item..
or would doing an input text and button be easier?
that way they just type in what they need and it goes there?
If thats the case, i cant get that to work either..
Any help is appriciated!
Thanks!

kglad-
Any code i use isnt working, but its probably because i dont
know what code works and what code doesnt so i just put something
in and go from there, just nothing has worked.
I really dont know much about the drop down feature period
except how to label it.

Similar Messages

  • To get image in the ALV filter drop down help

    Hi,
    I have a column named 'Status' in ALV whose cell editor is of type image. I am able to get the image as well.
    Now the issue here is while i'll click on the standard filter.. i want to add drop down helps. I am able to get texts  but not image.
    Can anyone help me on this?
    Thanks and Regards
    Tenzin

    Hello,
    i'm facing the same problem, anyone how can help?
    Thanks and Regards
    Edited by: Christopher Linke on Feb 11, 2011 12:36 PM

  • A drop down menu that well doesnt drop down help is needed. ty

    So my proof of concept is below. i followed this video tutorial http://www.tutvid.com/tutorials/flash/tutorials/dropDownMenu.php and i came across a problem.  the green bar is a menu that lights up and drops a menu down.  I created the buttons, then followed by a layer that is the drop down layer that includes an internal layer of a mask layer that drops down.  In that sub layer i put in on frame 1 stop(); and on frame 6 stop in a an action script layer.  then going back to the initial scene one i gave the drop down menu an instance name and then went into the button layer and gave it some action script below
    on(rollOver){
         contactMenu.play();
    I test the movie no errors just nothing seems to be triggering the menu to do anything, i mean it use to light up now nothing its a dead energizer bunny.  I'm up for any suggestion solutions ideas thoughts.  or plans to conquer the world.  have a pretty solid deadline tomorrow.  any help is appreciated!!!

    what's the following trace() show when you roll over the object to which it's attached:
    on(rollOver){
    trace(contactMenu);
    contactMenu.play();

  • Drop Down Help for a newbie

    Hi, I am working on a couple of new forms for requesting accounts. I have set up some nice drop down menu's but would like to fix them so that when a particular option is selected in one drop down, the next drop down will offer only the options for the selection in the previous menu. Is this feature available in Adobe Professional and if so how could I do this?
    Cheers
    Michael

    Hi Michael,
    when a particular option is selected in one drop down, the next drop down will offer only the options for the selection in the previous menu
    ADDT offers exactly this feature with its "dependant dropdown menus" behaviour.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • Urgent drop down help

    using Javascript
    I have a drop down with the following
    1. jobs
    2. annoucements
    3.cars
    I have few textfields in the same form, one of the textfield
    is called
    "position" and is not validated and i want to validate it
    I want to know how can i write the validation in javascript
    or VB script if
    someone selects from the dropdown JOBS only the the position
    textfield shud
    be validated saying that
    " you have selected the jobs from the drop down so pls fill
    the positition
    field "

    Murray, thanks for catching me.
    OnFocus nothing will be set. You will need blur or change, I
    think, not
    offFocus.
    a.. blur - The input focus was lost.
    b.. change - An element lost the focus since it was changed.
    c.. focus - The input focus was obtained.
    d.. reset - The user reset the object, usually a form.
    e.. select - Some text is selected
    f.. submit - The user submitted an object, usually a form.
    from :
    http://www.comptechdoc.org/independent/web/cgi/javamanual/javaevents.html
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > <select onFocus="CalljsScript()">
    >
    > ?
    > --
    > 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
    > ==================
    >
    >
    > "crash" <[email protected]> wrote in message
    > news:[email protected]...
    >> Process, not script:
    >>
    >> <form>
    >> <DropDownList offFocus="CalljsScript()">
    >> </form>
    >>
    >> jsScript {
    >> if FormName.FieldName.Value(forDropDown) ==
    JobsValue then
    >> set FormName.FieldName.Value(forPosition) == 'you
    have selected the
    >> jobs from the drop down so pls fill the positition
    field'
    >> }
    >>
    >>
    >> "Techy" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> using Javascript
    >>>
    >>> I have a drop down with the following
    >>>
    >>> 1. jobs
    >>> 2. annoucements
    >>> 3.cars
    >>>
    >>> I have few textfields in the same form, one of
    the textfield is called
    >>> "position" and is not validated and i want to
    validate it
    >>>
    >>> I want to know how can i write the validation in
    javascript or VB script
    >>> if someone selects from the dropdown JOBS only
    the the position
    >>> textfield shud be validated saying that
    >>>
    >>> " you have selected the jobs from the drop down
    so pls fill the
    >>> positition field "
    >>>
    >>
    >>
    >
    >

  • Help needed to create Drop down help through Design layer for attribute

    Hi All,
    Has anybody created a Dropdown help through Design layer for standard field, there we have check Box ............
    Please Help me to know this ASAP....
    Edited by: Pankaj Gupta on Feb 26, 2010 10:52 AM

    Hi,
    Here is the exampel Program, i am sending the code for a Paramter, If you want this for the Select-options, then you need to have the paramer name as PS_PARM-LOW and you need to write the smae logic again for PS_PARM-HIGH to get the List box for the select-option
    REPORT ZLIST.
    TYPE-POOLS: VRM.
    DATA: NAME  TYPE VRM_ID,
          LIST  TYPE VRM_VALUES,
          VALUE LIKE LINE OF LIST.
    PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.
    AT SELECTION-SCREEN OUTPUT.
    NAME = 'PS_PARM'.
    VALUE-KEY = '1'.
    VALUE-TEXT = 'LINE 1'.
    APPEND VALUE TO LIST. VALUE-KEY = '2'.
    VALUE-TEXT = 'LINE 2'.
    APPEND VALUE TO LIST.
    CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
    START-OF-SELECTION.
    WRITE: / 'PARAMETER:', PS_PARM.

  • The green drop down bar for tracker blocking disappeared when Firefox updated today, how do I get it back?

    This feature that helps to block ad and social network tracking appeared on the last update, it had a green drop down where I could then get a screen showing the number of tracking that are blocked, not blocked and could block the ones that weren't. Today when Firefox updated it disappeared. I do have the TrackerBlock addon installed, but I found the drop down helpful and would like to get it back.

    Sometimes an icon will get removed from the toolbar by another extension. Could you check the Customize dialog to see whether the missing icon is in there? This article has the steps: [[Customize Firefox controls, buttons and toolbars]].

  • Varying the values in drop-down

    Hi All,
    We have created a report to display certain data using object oriented ALV. In the display, drop-down help is provided for one column.
    Now, I want to vary the values in the dropdown help depending on certain criteria.
    Is it possible?
    Thanks,
    Supriya.

    hi,
    go through the given below link..
    link:[https://www.sdn.sap.com/irj/scn/wiki?path=/display/snippets/dropdowns%252bin%252balv]
    hope this help you..
    Regards
    Ritesh J

  • Drop down values in ISR

    I have read a couple pf threadds which talked about this... but i did not find any that solved my problem, hence posting thsi query ...
    I have created a New ISR .
    I have two fields   OLD Position PLANS_OLD_TEXT
                             New position   PLANS_NEW_TEXT
    I have the following code in the INT_SERVICE_REQUEST_INIT  method of QISR implementation for this Scenario
    w_lines = 1.
    ls_additional_data-fieldindex = w_lines.
        ls_additional_data-fieldname ='PLANS_NEW_TEXT'.
        ls_additional_data-fieldvalue = 'New Pos Title 3'.
        append ls_additional_data to additional_data.
    ls_additional_data-fieldindex = w_lines.
        ls_additional_data-fieldname ='PLANS_NEW_TEXT'.
        ls_additional_data-fieldvalue = 'New Pos Title 3'.
        append ls_additional_data to additional_data.
        w_lines = w_lines + 1.
        ls_additional_data-fieldindex = w_lines.
        ls_additional_data-fieldname = 'PLANS_NEW_TEXT'.
        ls_additional_data-fieldvalue = 'HR co ordinator 3'.
        append ls_additional_data to additional_data.
    In the binding tab of the object pallatte i have mentioned $record.PLANS_NEW_TEXT.DATA[*].FIELD as the defautl binding.
    Is there anything else that needs to be done to get this F4 drop down help.
    I seem to be missing something simple which i am noto abel to get an idea of .. any help

    Hi Gogol,
    Just check whether you have defined KEY and VALUE attribute of the 'PLANS_NEW_TEXT' characteristics in QISRSCENARIO transaction.
    If yes, then modify your code:
    w_lines = 1.
    ls_additional_data-fieldindex = w_lines.
    ls_additional_data-fieldname ='PLANS_NEW_VALUE'.
    ls_additional_data-fieldvalue = 'New Pos Title 3'.
    append ls_additional_data to additional_data.
    ls_additional_data-fieldindex = w_lines.
    ls_additional_data-fieldname ='PLANS_NEW_KEY'.
    ls_additional_data-fieldvalue = w_lines.
    append ls_additional_data to additional_data.
    w_lines = w_lines + 1.
    ls_additional_data-fieldindex = w_lines.
    ls_additional_data-fieldname ='PLANS_NEW_VALUE'.
    ls_additional_data-fieldvalue = 'New Pos Title 3'.
    append ls_additional_data to additional_data.
    ls_additional_data-fieldindex = w_lines.
    ls_additional_data-fieldname ='PLANS_NEW_KEY'.
    ls_additional_data-fieldvalue =w_lines.
    append ls_additional_data to additional_data.
    Hope this helps,
    Amit

  • Changing values in drop-down dynamically

    Hi All,
    We have created a report to display certain data using object oriented ALV. In the display, drop-down help is provided for one column.
    Now, I want to vary the values in the dropdown help depending on certain criteria.
    Is it possible?
    Thanks,
    Supriya.

    HI,
    Please refer the program BCALV_EDIT_06.In one form set_drdn_table, Loop the table whose values you want to show in drop down,append and pass to method set_drop_down_table of ALV class.
    Hope this helps you
    Raj

  • I'm not techinal so please bear with me. I don't have the bar that allows me to type in a website. I did have a few minutes ago. When I make the page full screen and move my cursor to the top of the page, the bar drops down and I can use it.  help

    I'm not techinal so please bear with me. I don't have the bar that allows me to type in a website. I did have a few minutes ago. When I make the page full screen and move my cursor to the top of the page, the bar drops down and I can use it. I've tried restarting my computer, didn't work. Help!

    Well I figured it out, right click the arrow that makes the screen bigger and unclick the Hide Toolbar. I knew it couldn't be that hard.

  • It won't let me share my movie. Nothing happens when I click "share" or even in the drop down menu. I don't get options. HELP! I need this video by tonight!

    I have worked with iMoive a ton and have never had an issue. I consider myself pretty computer savvy. This new iMovie is not my friend. It will not let me share my new video. I click on the project and click "share" like it says but I don't receive any further prompt. It literally does nothing. I tried the drop down menu and I see the "share" with an arrow indicating there are options but no drop down menu appears. I need this video by tonight to submit for work. HELP!

    I got it to share! No reloading iMovie!
    I do not have Mackeeper on my laptop
    I have the movie files on an external hard drive
    1. Close out iMovie
    2. Eject the external hard drive
    3. Start up iMovie
    4. Plug in the external hard drive
    5. Go into finder and double click on the folder containing the movie
    6. Select the movie as if to edit
    7. Share it!
    I hope this works for you too

  • Why is my page set up drop down different from your illustration in help for printing background

    ''duplicate - https://support.mozilla.com/en-US/questions/830795''
    The page set up drop down menu looks nothing like the illustration in help. It does not include a box to check for "print background. How do I print background

    first, does it sound like I set it up correctly from what I wrote?
    Yes, all sounds correct.
    Second, I heard that adding a b/g AX to the network will slow everything down to b/g speeds but I have also read that simply using B/G AX's to add speakers by joining the network will not slow down the N network....which is it?
    The b/g AX devices will not slow down the network unless they are actively streaming AirTunes. Even then, audio streaming does not require a great deal of bandwidth, so for the most part, the effect would be negligible. Don't worry about it.
    Is my network slowed down to b/g speeds because of my speaker set up or not?
    The speed on your network will depend on a number of factors..are you downloading something while copying something else? Are you simply browsing? How far is the computer from the closest wireless access point?
    You can check your current available bandwidth on your local network by doing the following:
    Hold down the option key on your Mac while you click on the fan shaped AirPort icon at the top of the screen. Look for the Transmit Rate number.
    "g" wireless = 54 Mbps
    What do you see?
    Oh, and by the way, I don't know if this matters, but while the time capsule serves as the main base station, it is in bridge mode because it is plugged into a 2wire gateway router.
    If the Time Capsule is in bridge mode, it cannot act as the main base station. If you want, you could think of it that way if you are using the wireless on the Time Capsule as your preferred network, but the Time Capsule is not the "main" router.
    Message was edited by: Bob Timmons

  • How do I link this drop down menu created in Fireworks when I export to dreamweaver, Help!

    Hello everyone,
    Thank you in advance for dealing with my inexperience and answering my question.
    I have been stuck on this for wayyyy too long. Here is my problem. I created a drop down menu for a portfolio website I am building. When I pull this into Dreamweaver the way to link the menu items to the pages is elusive. I have no idea what to do. Please help?
    Here is the screenshot. Thank you very much     Jennifer
    OK, Well no one can actually see this image since it came in so small, but please help me anyway if you can?

    Thank you for answering my question. I created the graphics in photoshop, sliced them in fireworks and now I am pulling the site in dreamweaver to link it. The dropdown is just a little dropdown menu. I created it in Fireworks because when I tried to create one in Dreamweaver I had to use a spry which was even harder to figure out and get to work. If I knew Html or CSS my life would be much easier but I don't. I don't have much time to learn it right now since I work over time all week, do graphics freelance and I go to school for computer science. I need to get this site up and I just want a fast little fix to get it up. When I have time to learn more I can make this site better or start a better site, but for right now it just needs to work. Is there a way to get what I have working so I can just get this site up. Later I will have more time and more experience to do this better. I am learning so thank you for your experience.
    Thanks,
    Jennifer

  • A box with a blue outline appeared in my bookmark drop-down menu. I can't get rid of it, and it obstructs the view of the bookmarks as I scroll up or down. Help!

    I was trying to bookmark a page, using the "Choose" menu in the bookmarks. I must have touched a key by accident, and a box with a blue outline & the name of one of my folders appeared in my bookmark drop-down menu. At first the box contained the folder name, then I was trying to delete the box, and erase the name, thinking it might get rid of the box, but it didn't. I can't get rid of this box! It obstructs the view of what is underneath. It stays in the same position as I scroll up & down in the drop-down menu, and it hides what is underneath. Please help me get rid of this box. It is driving me crazy! Thanks!

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

Maybe you are looking for

  • DVD drive won't open... no way to open it!!!

    My problem is that if I press and hold my eject key on the keyboard the eject symbol shows up and fades away on my screen, but the drive will not open. I pulled down the metal cover and was going to try and stick a paper clip into the hole next to th

  • Spatial Query that uses Result of another Spatial Query

    Hi all, I am using the SDO_DIFFERENCE Operator to return the difference between a query window and an intersection geometry. This is fine and i get an object back that is cast to a STRUCT using the SDO API. I want then to use this (returned)object in

  • Activate Sandbox solution in SharePoint 2010

    Hello guys, I would like to activate the sandbox solution or even to use code in the whole farm. I have a InfoPath Formular with code, but SharePoint doesn't allow me to publish this form. How can I do this? Best regards Matthias

  • UnsatisfiedLinkError when combining J2SE & J2ME

    Hello, I'm doing an application in J2SE which calls to a package compiled in J2ME. It compiles fine. In runtime, when executing functions implemented in J2SE there's no problem, but when I try to execute a function from the library compiled in J2ME,

  • Live paint bucket error

    Can someone Help me? I am trying to use the live paint bucket tool, but when I select all the anchor points, and then select the Live Paint Bucket Tool, on few places where I want to fill the color, I have an ABORT Sign under the live paint bucket to