Add submenu to custom menu item

Hi All
Can any one of u give me an idea , how to add sub menu to a context menu item???

http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf66f5a-7fea.html

Similar Messages

  • Is it possible to add a custom menu item to built-in apps like addressbook, safari etc in iPhone

    Is it possible to add a custom menu item to built-in apps like addressbook, safari etc in iPhone

    Apple expects the OS to remain constant for all users - helps to maintain a quality experience. Devs are not allowed to make changes to built-in apps.

  • Custom menu item not appearing in HTML5 Output

    I'm trying to add a custom menu item to the top right of a project, it shows up fine in the flash output of a published SCORM file, but it's non-existent in the HTML5 output.
    Has anyone experienced this issue, or have any suggestions for a solution?
    Thanks in advance for any help you can provide!

    I did it through the Skin Editor in Captivate, it is not an external flash menu...I wouldn't expect it to convert flash to html5.  Through the skin editor you can add extra buttons, in the same place you can move the table of contents button, to the "top right".  The problem is, the custom menu items won't even show the text where the link should be in html5, nothing... only when published to flash.

  • Add submenu to Context menu

    Could anybody give me advise how to add submenu to context
    menu.
    Thanks.

    Have you seen Chris' reply to your original post http://forums.adobe.com/thread/906582 ?

  • Custom menu items

    i just want to know where to put this code
    CoreMenutItems and CoreMenuItemRelationships resources are used to introduce menu items. Below is a sample code on how to get it done.
    *<@dynamicdata CoreMenuItems@>*
    id, label, linkType, linkData
    MY_SEARCH, My Custom Search, cgi, IdcService=CUSTOM_SEARCH_SERVICE
    *<@end@>*
    *<@dynamicdata CoreMenuItemRelationships@>*
    parentId, id, loadOrder
    MENU_A, MY_SEARCH, 30
    *<@end@>*
    plz

    In your component wizard, add an include resource file (or reuse an existing one) and lauch editor to manually edit the hda file (note: I think it'll work in most resource files, but have tested it in includes). Copy paste the above code in there and you should have a menu item. Good Luck,
    Fabian

  • Add checkmark to system menu item

    Hello,
    My aim is to add a menu item to a windows system menu to toggle a stay on top feature.
    I found a nice piece of code on stack overflow to accomplish this:
    Link to stackoverflow code
    Here is the result in my program:
    I've modified the code to keep my form on top:
    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
    If m.Msg = &H112 Then
    If m.WParam.ToInt32 = &H1FFF Then
    Me.TopMost = IIf(Me.TopMost = True, False, True)
    End If
    End If
    MyBase.WndProc(m)
    End Sub
    All I need now is to place a checkmark beside my menu item to indicate the current state.
    Can someone show me the code to place/remove the checkmark, given the stackoverflow code I'm using?
    Any help would be appreciated.
    Rick

    Hi,
     Here is an example you can use. I changed things around a bit to correct things. This will check the menu item when it is set to TopMost and uncheck it if it is not.
    Imports System.Runtime.InteropServices
    Public Class Form1
    Private Const WM_SYSCOMMAND As Integer = &H112
    Private Const MF_STRING As Integer = &H0
    Private Const MF_CHECKED As Integer = &H8
    Private Const MF_UNCHECKED As Integer = &H0
    <DllImport("user32.dll", EntryPoint:="GetSystemMenu")> _
    Private Shared Function GetSystemMenu(ByVal hWnd As IntPtr, <MarshalAs(UnmanagedType.Bool)> ByVal bRevert As Boolean) As IntPtr
    End Function
    <DllImport("user32.dll", EntryPoint:="AppendMenuW")> _
    Private Shared Function AppendMenuW(ByVal hMenu As IntPtr, ByVal uFlags As UInteger, ByVal uIDNewItem As UInteger, <MarshalAs(UnmanagedType.LPWStr)> ByVal lpNewItem As String) As <MarshalAs(UnmanagedType.Bool)> Boolean
    End Function
    <DllImport("user32.dll", EntryPoint:="CheckMenuItem")> _
    Private Shared Function CheckMenuItem(ByVal hMenu As IntPtr, ByVal uIDCheckItem As UInteger, ByVal uCheck As UInteger) As UInteger
    End Function
    Private idMenu As UInteger = &H1FFF
    Private hMenu As IntPtr = IntPtr.Zero
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    hMenu = GetSystemMenu(Me.Handle, False)
    AppendMenuW(hMenu, MF_STRING, idMenu, "Stay On Top")
    End Sub
    Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
    If m.Msg = WM_SYSCOMMAND Then
    If m.WParam.ToInt32 = idMenu Then
    Me.TopMost = Not Me.TopMost
    If Me.TopMost Then
    CheckMenuItem(hMenu, idMenu, MF_CHECKED)
    Else
    CheckMenuItem(hMenu, idMenu, MF_UNCHECKED)
    End If
    End If
    End If
    MyBase.WndProc(m)
    End Sub
    End Class
    If you say it can`t be done then i`ll try it

  • Customized menu item

    For work I'm making a JTable bean that has Sort/Search/Filter functionality. I currently have achieved all three. Right clicking in a column brings up a popup menu where you can choose "Sort Ascending", "Sort Descending", "Search...", "Filter...". Search and filter currently bring up a separate window where you can type in a string and choose other advanced options.
    What I would like to do is in addition to the "Search..." and "Filter..." options on the JPopupMenu
    I want a MenuItem similar to what you would find in Microsoft Access's Filter option when you right click on the table. The MenuItem looks like a JLabel with text "Filter: " next to a blank JTextField.
    When I type in a string this will perform my search/filter using the string I typed.
    I have attempted to write my own MenuItem as a JavaBean using IBM's VisualAge For Java 4.0 without any success.
    Please Help!
    Joshua Doerring

    Hello Aruna,
    As far as I know you cannot remove the default items for the menu.
    Sophie

  • Add custom menu to Adobe Bridge

    Is it possible to add a custom menu item to Adobe Bridge to call the Liquify Interface?
    Currently Photoshop CC 2014 is not able to load the liquify interface through and action or script

    You should be able to do it through an action. I do. Just make sure that you have a raster layer selected.

  • Add space between Pop Menu Magic items?

    Is there a way to add space between the menu items in
    generated by Pop Menu Magic? By this I mean, can you have the
    various menu items (the "tabs" or "buttons") exist with some space
    between them
    (something
    like this but with maybe more space), as opposed to the default
    way the "tabs" are generated (butted up to one another
    like
    this)?
    I have tried editing the p7pm CSS to acheive this in a page
    design I'm roughing out. I get close sometimes but no cigar.....I
    have tried messing with the list items in the HTML code itself, but
    no luck there either.
    Hope I am making enough sense here....
    Thanks,
    Tommy

    Have you asked the question on the PVII newsgroup? You'd
    probably get a
    much faster response over there
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    http://www.perrelink.com.au
    - Web Dev
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    http://www.adobe.com/devnet/dreamweaver/css.html
    "steelkat" <[email protected]> wrote in
    message
    news:e5fapn$kmo$[email protected]..
    > Is there a way to add space between the menu items in
    generated by Pop
    > Menu
    > Magic? By this I mean, can you have the various menu
    items (the "tabs" or
    > "buttons") exist with some space between them <a
    target=_blank
    > class=ftalternatingbarlinklarge
    > href="
    http://css.maxdesign.com.au/listamatic/vertical11.htm">(something
    > like
    > this but with maybe more space)</a>, as opposed to
    the default way the
    > "tabs"
    > are generated (butted up to one another <a
    target=_blank
    > class=ftalternatingbarlinklarge
    > href="
    http://www.projectseven.com/viewer/index.asp?demo=pmm">like
    > this)</a>?
    >
    > I have tried editing the p7pm CSS to acheive this. I get
    close sometimes
    > but
    > no cigar.....I have tried messing with the list items in
    the HTML code
    > itself,
    > but no luck there either.
    >
    > Hope I am making enough sense here....
    >
    > Thanks,
    >
    > Tommy
    >

  • New Menu Item

    hi experts
    i have created a custom menu item using following steps
    esign Console > Form Information > add new
    Class Name Organizations.Merge
    Description Move users from one organization to another
    Type menuitem
    Add following to xlWebAdmin.properties, xlWebAdmin_en_US.properties
    Organizations.Merge=mergeOrgs.do?Display
    menuItem.Organizations.Merge.link=mergeOrgs.do?MergeOrganizations
    menuItem.Organizations.Merge=Merge
    mergeOrgs.button.display=Merge Organizations
    however, when i log in to an account to which that menu item has been assigned, it displayed the Menu with Name as
    menuItem.Organizations.Merge
    where i would like to have just Merge as the name. any idea what to amend??
    best Regards

    I believe you should just require these three lines embedded in the files:
    *1. In xlDefaultAdmin.properties*
    menuItem.Organizations.Merge.link=mergeOrgs.do?MergeOrganizations
    mergeOrgs.button.display=MergeOrganizations
    Remove the space between Merge & Organizations as I did and mergeOrgs.button.display should be method in getKeyMethod() of your code
    *2. In xlWebAdmin_en_US.properties*
    menuItem.Organizations.Merge=Merge
    Preferably xlWebAdmin.properties and xlWebAdmin_en.properties should be updated as well. But doesn't matter much as usually internet explorer is set to en_US. Just confirm.
    Thanks
    Sunny

  • Adding menu items and making system calls in AfterEffects (AE,CS3)

    We are looking to do the following things via javascript in AfterEffects CS3. It does seem straight-forward, but am unable to find a good reference or example.
    * Add at startup a menu item under "File" (or similar main menu) and have it call a script function when clicked.
    * Have a script make an external system call (to launch an external application/executable with a few parameters)
    Any insights on how to achieve this?
    Many thanks!

    I wanted to see if there was any update on this, I'm writing a series of tools and would love to create a custom menu for quick and easy access.
    If it turns out there isn't an "easy" way to do this (env variables, special directory locations, javascripts) would anyone know if access to the menubar is possible from the Plugin API?
    I'm fairly new to After Effects, just getting up-to-speed on the environment now... seeing if I can duplicate the functionality of some old Nuke scripts in AE.
    thanks,
    Rick_

  • 'flatten.txt' script for Acrobat 9 Flatten Document Menu Item

    Hello,
    I was following the steps in this blog (Add a Flatten Document Menu Item to Acrobat) to add a Flatten Document menu item in Acrobat 9, and the link the 'flatten.txt' script is dead.  The page directs you to this link:  https://acrobat.com/?d=KlVeiP4I1SXCRcTpRh-2wQ, which is just the Adobe Document Cloud webpage.  Does anybody have a copy of the 'flatten.txt' script?  I've used this before on my last computer, but since re-installing I have not been able to add this feature to Acrobat 9.  Any help is appreciated.  Thanks

    You need to contact Rick Borstein to update the link for the missing file. See his blog entry In case files are missing. Adobe has closed Acrobat.com and started a new service for Acrobat DC.
    There are any number of scripts to provide add this feature with some options.
    PDFScripting free automation tools
    Selective Flattener by UVSAR, you may need to research where the user scripts are stored in the newer versions of Acrobat.
    In the future, you should either copy your custom scripts to a remote location for restoration or keep a copy of the scripts and documentation on removable data or a networked location as a backup.

  • How to create IView custom tray item?

    Hi experts,
    In the Portal Content I added to IView a tray with standard options: Refresh, Open in a new window etc. I would like to add my custom menu item to the tray and to assign my custom action handler for this menu item.
    Please could you help me?
    Thanks.

    Hi Marcel,
      Thanks for reply. I have gone through the link. But my question is:
    Let us say, we have created: validvalues: Group_10
      validvalue Title:validValueTitle10
      Color10: #FF0000.
    How can we use this specific value set for iView tray?
    How do we associate the valueset of iView family to layout? Where do we code this?
    How to assign an iview to family?
    Regards,
    Ganga.
    Edited by: Gangadharayya Hiremath on Apr 27, 2008 10:21 PM

  • Can't see "Add or Edit Fields" menu in Acrobat 9 Standard v9.5.2

    I am trying to edit the fields of an Adobe form from one of my co-workers.  We both are running Acrobat 9 Standard v9.5.2.  She is able to see the Forms-->"Add or Edit Fields" menu, while I cannot.
    I cannot get this menu item to show?  Can someone tell me if there is an option or setting to enable so that I can get to this menu item?
    Here is a screenshot of the form:
    Here is a screenshot of the Adobe Acrobat version we are running:
    Thanks,
      Ted

    Finally found a work around to my problem.  Here are the steps:
    (1) The original form.  Note missing "Add or Edit Fields" menu item.
    (2) Click on Document-->Extract Pages
    (3) The following dialog pops up.  Since I am only working with a 1 page form I accept the defaults and click OK.
    (4) The following window is launched.  Now I just save the newly generated form:
    (5) Now when I check the Forms menu, I finally see the "Add or Edit Fields" item:  Yay!!!!
    (6) In checking the Document Properties of the new form, the Application (PScript5.dll)  and PDF Producer (GPL Ghostscript 8.15) metadata is still the same as before:
    Still don't know why I couldn't get to the "Add or Edit Fields" menu item in the original form.  After doing the Extract, now I am able to get to it.   At this point that's all I care about right now.
    Thanks George for helping me investigate this issue!
    Teo

  • New Menu Item entry in Standard Help Menu

    Hi experts,
    I have added a custom menu item under the standard Help menu of SAP using SE41 (Menu Painter) with pragram name: MENUSYST and status: MEN
    I added the new entry and gave it a function code and activated the function code as well as the interface MENUSYST.
    This worked fine and the entry is visible at the desired location. Now on click of this new entry, I need to open a URL. I had a look at the HELP_START function module but modifying that to call the URL on click of the new menu item, would require an access key.
    Is there any other method available to accomplish the task?
    Regards,
    Reema.

    Hello,
    Basically I need to open a Custom Web Dynpro Application that I have created. Also I need to pass the trannsaction code as a parameter in the URL of the WDABAP Application.
    Pl help me proceed.
    Regards,
    Reema.

Maybe you are looking for