Elements 12 editor 'create drop down menu

In my 'create' drop down menu in the editor a very long blank drop down menu appears, is this normal and if not is there a quick fix... and if this involves re-install can that be done without re-doing all my plugins.
Elderly semi computer literate user.
Ian Young

Hi,
Unfortunately, this functionality is not possible with Adobe FormsCentral.
Regards,
Nakul

Similar Messages

  • How to create Drop down menu in the selection screen

    Hi all,
    How to create Drop down menu in the selection screen.
    Fast answer will be highly rewarded
    Regards
    Bikas

    hi ,
    TYPE-POOLS : vrm.
    TABLES:vbak,vbap.
    DATA : v(80) TYPE c.
    DATA: wa_vbak TYPE vbak,
          it_vbak TYPE vbak OCCURS 0 WITH HEADER LINE,
          wa_vbap TYPE vbap,
          it_vbap TYPE vbap OCCURS 0 WITH HEADER LINE.
      DATA: l_name TYPE vrm_id,
            li_list TYPE vrm_values ,
            v_count  TYPE i,
            l_value LIKE LINE OF li_list.
    PARAMETERS: p_test(20) AS LISTBOX VISIBLE LENGTH 60 MODIF ID DAT.
    INITIALIZATION.
    AT SELECTION-SCREEN OUTPUT.
      PERFORM get_data.
      LOOP AT it_vbak.
        l_value-key =  it_vbak-vbeln .
        l_value-text = it_vbak-vbeln .
        APPEND l_value TO li_list.
      ENDLOOP.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = 'P_TEST'
          values          = li_list
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    AT SELECTION-SCREEN ON P_TEST.
      clear : li_list , li_list[].
      SELECT vbeln
             matnr
             meins
             FROM vbap
             INTO CORRESPONDING FIELDS OF TABLE it_vbap
             WHERE vbeln = p_test.
    START-OF-SELECTION.
      SELECT vbeln
             matnr
             meins
             FROM vbap
             INTO CORRESPONDING FIELDS OF TABLE it_vbap
             WHERE vbeln = p_test.
      LOOP AT it_vbap.
        WRITE :/ it_vbap-vbeln, it_vbap-matnr,it_vbap-meins.
      ENDLOOP.
    *&      Form  get_Data
          text
    -->  p1        text
    <--  p2        text
    FORM get_data .
      SELECT  vbeln
              FROM vbak
              INTO  CORRESPONDING FIELDS OF TABLE it_vbak.
    ENDFORM.                    " get_Data
    regards,
    venkat.

  • How to create drop-down menu with transparency

    Hello,
    Is it relatively easy to create drop-down menu's with
    transparent drop downs? Any step by step help would be greatly
    appreciated.
    I thank you in advance,
    Jaz

    jasperjaz schrieb:
    > Looks like some cool stuff. However, nothing on drop
    downs
    >
    Take a look at "Creating Animated Buttons". The Tweening of
    the text to
    the right and changing the color perhaps could be replaced or
    appended
    by your drop-down-needs? The Drop-Down is another Animated
    Button!?
    Bye
    Klaus

  • How To Create Drop Down Menu With Tab

    hi
    How To create Drop Down Menu with tab in Header of application like website Horizontal Dropdown Menu In html.
    Thanks
    Manoj
    Edited by: Manoj Kaushik on Dec 30, 2009 4:16 AM

    Try the Apex forum {forum:id=137} someone there may have an answer.
    Which version, that could be important, XE out-of-the-box has apex 2.1 if it hasn't been upgraded to 3.x

  • (beginner) creating drop down menu?

    What I am trying to do is create a drop down menu of links.
    I can create a rollover no problem. When the rollover is
    activated, a list of text appears. I want to make this list of text
    change color when rollover and eventually make each one into
    seperate links.
    So, can rollovers be created within rollovers?
    Thanks for any help! ^_^
    Oh and where do I find the code so I can attach it here?

    in as2, you can't attach mouse handler code to a child and
    parent and expect the child to respond to mouse events. you can use
    a loop and hittest in the child or parent and mouse handler in the
    other.
    if you click replay (not quick reply), there's an option to
    attach code.

  • How to create drop down menu

    Hi
    Can we create drop down menus in HTML DB as we do in
    Visual Basic.
    Thanks.

    In HTML DB v2.0 you can create drop down menus. I cannot say if they are the same as Visual Basic because I am not familiar with VB..
    Here is an example pull-down menu:
         A   B   C                <--- Top level
         A1  B1                   <--- Second level
         A2                       <--- Third levelInitially the user sees a horizontal menu with "A", "B', and "C". When the user clicks on "A" a menu containing "A1" and "A2" is displayed under "A".
    Here is what you do to create this:
    1.) Edit a page.
    2.) Click the "Create" (plus sign) button in the "Lists" region under "Shared Components".
    3.) Enter a List name.
    4.) Make the "List Template" be "DHTML Menu with Sublist".
    5.) Click the "Create List Entry >" button on the right. You are now creating your Top Level menu.
    6.) Enter "A" into the "List Entry Label".
    7.) Set "Target Type" to "- No Target -". This could be an URL or another page in the application.
    8.) Click the "Create and Create Another" button. You are now create the lower level menus.
    9.) Select "A" for the "Parent List Entry".
    10.) Enter "A1" into the "List Entry Label".
    11.) Set "Target Type" to "- No Target -".
    12.) Repeat steps 8, through 11 for "A2".
    13.) Click the "Create and Create Another" button.
    14.) Repeat steps 6 through 12 for "B" and "B1".
    15.) Click the "Create and Create Another" button.
    16.) Repeat steps 6 and 7 for "C".
    17.) Click the "Create" button.
    18.) Click the "Add this list to the current page" link.
    19.) Specify the region information for the menu and click "Next" button.
    20.) Click the "Create List Region" button.
    Mike

  • How to create drop down menu in my report

    hi all
    i have a list of options which i have to display as a drop down menu
    pls guide me to do
    thanks in advance

    hi,
    u want like this?
    parameters: p_mode as listbox visible length 10.
    parameters: p_mode1 as listbox visible length 10.
    AT SELECTION-SCREEN OUTPUT.
      PERFORM fill_dropdown_list USING 'p_mode'(001).
      PERFORM fill_dropdown_list1 USING 'p_mode1'(007).
    FORM fill_dropdown_list USING value(f_parameter).
      TYPE-POOLS: vrm. " For parameter drop down lists
      DATA:  name  TYPE vrm_id,
               list  TYPE vrm_values,
               value LIKE LINE OF list.
      name = f_parameter.
      value-key = 'C'.
      value-text = 'Fist'.
      APPEND value TO list.
      value-key = 'F'.
      value-text = 'Second'.
      APPEND value TO list.
      value-key = 'H'.
      value-text = 'Third'.
      APPEND value TO list.
      value-key = 'D'.
      value-text = 'Forth'.
      APPEND value TO list.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = name
          values = list.
    ENDFORM.                       " fill_dropdown_list
    FORM fill_dropdown_list1 USING value(f_parameter).
      TYPE-POOLS: vrm. " For parameter drop down lists
      DATA:  name  TYPE vrm_id,
               list  TYPE vrm_values,
               value LIKE LINE OF list.
      name = f_parameter.
      value-key = 'C'.
      value-text = 'Fist'.
      APPEND value TO list.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id     = name
          values = list.
    ENDFORM.                       " fill_dropdown_list

  • Drop down menu in fireworks 8

    Hello All,
    Is it possible to create drop down menu buttons in adobe cs5 and then export to fireworks 8 as a style for pop up menu. I want my drop down menu buttons to have gradient and white borders which I cannot do in fireworks nor does it have such a style in fireworks drop down menu button.
    Please see image example
    any reply would be much appreciated.
    Many thanks
    helen

    I didn't know about this feature!
    Looks like you'll have to define a style for the button backgrounds first...
    ...then define the text styles within the Pop-up Menu Editor. Not sure about the white border, though; there doesn't seem to be a place for it within the Pop-up Menu Editor. I imagine that it could be applied to the containing HTML element after exporting.

  • Is it possible to create a down menu in ID without hyperlinking?

    Hi there,
    I am trying to design a template for workorder printing proofs and I was wondering if this operation is possible:
    Is there was a way to make a drop down menu that contains elements (in this case material names) that when exported, I can choose the element from a drop down menu, so that when I resave the pdf it will show that material name if I were to reopen the document? Also, if I decide to print it, will it show that material name in the position I specified the drop down menu to be located in InDesign?
    I know I can make drop down menus that hyperlink, but I am not looking for this pdf to be interactive, but just a way to store more information.
    Thanks in advance.

    It sounds like a PDF form. InDesign CS6 can now export PDF forms which sound like they work the way you want.

  • How to configure drop down menu in custom list

    Hi,
    I want to create custom list with 3 options. Active, Proposal and Completed. How can I create drop down menu like this (look at picture). 

    Hi,
    According to your post, my understanding is that you wanted to configure drop down menu in custom list.
    I suggest to modify the view to group by Preposition Status.
    You can follow the steps as below:
    Create list, add choice column named Preposition Status.
    Add items.
    Modify the view as below:
    Then the result is as below:
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Drop Down Menu in iWeb

    Does anyone know how to create a drop down menu in iWeb 09? I need the idiots guide if possible!
    Thank you

    you can't create drop down menu in iweb, you can get all the needed code from online site such as cssmenumaker.com
    but i do not recommend just copy+paste the code into html snippet widget, because you will create static/dead zone behind the drop down area. the longer the drop down the larger dead zone.
    it can be done though, you will need to know html, css, javascript and how iweb generates it code:
    http://iweb3widgets.cyclosaurus.com/DropDownNavBar/Drop_Down_Nav_Bar.html
    note: apple, google and yahoo! are active links and fully functional behind the drop down area.

  • Drop down menu in sap personas ?

    Hi,
    Can we able to create drop down menu in Personas. Can you guide me on this topic.
    Regards,
    Sivaganesh

    Hello Sushant,
    Ya iam aware on that but I was expecting Drop down menus like the below one,
    Iike HTML dynamic menus, is there any feature or a way to do those in personas. That's my question.
    Regards,
    Sivaganesh

  • How to put drop down menu over iframe?

    I created drop down menu in A-Master with height 100 pixels.
    On a page which uses A-Master template I've put youtube video, example:
    <iframe width="1000" height="500" src="//www.youtube.com/embed/8eDuupJ9Uus" frameborder="0" allowfullscreen></iframe>
    and when I export HTML, Iframe video is over dropdown menu so I can't see this menu, iframe is on top of it, how can I place dropdown menu on top of this iframe?
    Tried to search whole internet with no good results, I have only found other people has same problem.
    ...and I have tried this "wmode="transparent" too:
    <iframe width="560" height="349"src="http://www.youtube.com/embed/rLVCjnEGrqQ?wmode=transparent"frameborder="0" allowfullscreen wmode="transparent"></iframe>
    was no good

    Your menu layer should be on top of everything!
    Regards,
    Frank

  • Photoshop and elements 13  Working in iPhoto Want to edit image using photoshop elements Did the following  IPhoto Preferences Advanced Edit Photos: In drop down menu chose in Photoshop Elements  Also control click and chose edit in external editor  Drop

    Photoshop and elements 13
    Working in iPhoto
    Want to edit image using photoshop elements
    Did the following
    IPhoto>Preferences>Advanced>Edit Photos: In drop down menu chose in Photoshop Elements
    Also control click and chose edit in external editor
    Drop down menu edit photos in external program>photoshop Elements
    Go to to the image I'm working on  --- selected the image, the clicked on edit. When nothing happened I double clicked the image. Still elements didn't open. Then I opened the Elements editor, went back to iphoto and tried the entire process again. the photo still didn't open on Elements 13 for editing.
    I have 3 Elements 13 books as well as looked on line--all my references say the exact same thing ---- iPhoto>Preferences>advanced>edit in external program>photoshop Elements
    I uninstalled and reinstalled both iPhoto as well as Elements.
    I spoke with application technical support.  There appears to be nothing wrong with my copy of iPhoto.  However there is no support from Adobe.  I waited for over 1.5 hours for chat support several days ago, and finally gave up.

    You are probably choosing the obvious file rather than the correct file as the PSE editor. The actual editor is hidden away inside the Support Files folder. The PSE file at the top level of the PSE folder in Applications is just an alias for the welcome screen and what you're describing is exactly what happens when you choose that. You want this one:

  • I just downloaded photoshop elements - have opened an existing pdf drawing - 1) I am trying to create layers; however, the option is not available? (i.e. greyed out rather than black) from the drop down menu - "layer" - "create new"? what do i do

    i just downloaded photoshop elements - have opened an existing pdf drawing - 1) I am trying to create layers; however, the option is not available? (i.e. greyed out rather than black) from the drop down menu - "layer" - "create new"? what do i do

    You'd better ask here:
    https://forums.adobe.com/community/photoshop_elements

Maybe you are looking for

  • How do I change my primary email account?

    I have 2 gmail accounts. I want to change my current primary account and make the other gmail account my primary. I can't find any place in my account settings to do this. I have a MAC with Lion OS. All is updated.

  • How long should it take to download Mountain Lion?

    How long should it take to download and install Mountain Lion?  I have been downloading it for about 5 hours and it still has 1 gig to go.  My current OS X is 10.7.4

  • URGENT please help: catridge

    Hello.  I bought the hp laserjet 01102w, and got the ce285a cartridge.  My trouble is I have no idea how to remove the orange seal strip from the inside of the cartridge.  I pulled it gently, expecting the seal itself to come out, but a strip of tone

  • Resetting Background Color to default

    I made a change to the Background Color Property for the Canvas and now want to reset it to the default (so that it will use the color scheme set in the formsweb.cfg file). How do I do this? Typing in "<unspecified>" or "DEFAULT" does not work (it wo

  • Proximity sensor not working after IOS 6 upgrade

    After upgrading to IOS 6 on a iphone 4 now the proximity sensor wont work just like before until they patched it.