Add sub menu

I want to create menus in nested order i.e.
Customized Reports
....Financials
     ........Bank Book
Outgoing Payment Receipt
I am able to create Customized Reports and Financials.But I am not able to add Bank Book and Outgoing Payment Receipt under Financials.For creating the above menus I have referred the code from sample examples given by sdk.The code is as,
oMenuItem = SBO_Application.Menus.Item("MyMenu022")
            oMenus = oMenuItem.SubMenus
            '// Create s sub menu
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
            oCreationPackage.UniqueID = "Financials"
            oCreationPackage.String = "Financials"
            oMenus.AddEx(oCreationPackage)
            '// Create s sub menu
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
            oCreationPackage.UniqueID = "MySubMenu028"
            oCreationPackage.String = "Edit Item"
            oMenus.AddEx(oCreationPackage)

see this u get idea--
Sub AddMenuItems()
        Dim MenuImage As String
        Dim cmdCenterForm As SAPbouiCOM.Form
        cmdCenterForm = SBO_Application.Forms.GetFormByTypeAndCount(169, 1)
        If cmdCenterForm Is Nothing Then
            Return
        End If
        'freeze the command center (faster and no flickering)
        cmdCenterForm.Freeze(True)
        Try
            'Menu ID Range to be used is M_000131 - M_000150
            'Form ID Range to be used is 2000050151 - 5000050170
            oCreationPackage = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_MenuCreationParams)
            oMenuItem = SBO_Application.Menus.Item("43520")  ' Module Menu
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
            oCreationPackage.UniqueID = "M_000131"
            oCreationPackage.String = "Exports"
            oCreationPackage.Enabled = True
            oCreationPackage.Position = 14
            MenuImage = System.Windows.Forms.Application.StartupPath + "\Images\Imports.bmp"
            oCreationPackage.Image = MenuImage
            oMenus = oMenuItem.SubMenus
            Try
                oMenus.AddEx(oCreationPackage)
            Catch ex As Exception
            End Try
            ' Incentives 
            oMenuItem = SBO_Application.Menus.Item("M_000131")  ' Exports
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
            oCreationPackage.UniqueID = "M_000141"
            oCreationPackage.String = "Incentives"
            oCreationPackage.Enabled = True
            oCreationPackage.Position = 0
            oMenus = oMenuItem.SubMenus
            Try
                oMenus.AddEx(oCreationPackage)
            Catch ex As Exception
            End Try
            '''''''   'sub menu for Incentives
            AddMenuItem1("M_000142", "Free Trade Zones")
            AddMenuItem1("M_000143", "Export Oriented Units (EOU")
            AddMenuItem1("M_000144", "DEEC")
            AddMenuItem1("M_000145", "EPCG")
            AddMenuItem1("M_000146", "Deemed Exports")
            AddMenuItem1("M_000147", "Duty Drawback")
            AddMenuItem1("M_000148", "PPV Report")
            ' Master 
            oMenuItem = SBO_Application.Menus.Item("M_000131")  ' Exports
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_POPUP
            oCreationPackage.UniqueID = "M_000161"
            oCreationPackage.String = "Master"
            oCreationPackage.Enabled = True
            oCreationPackage.Position = 0
            oMenus = oMenuItem.SubMenus
            Try
                oMenus.AddEx(oCreationPackage)
            Catch ex As Exception
            End Try
            'sub menu for master
            AddMenuItem1("M_000162", "Shipping Bill")
            AddMenuItem1("M_000163", "Customs Declaration Form")
            AddMenuItem1("M_000164", "Commercial invoice")
            AddMenuItem1("M_000165", "Customs Invoice")
            AddMenuItem1("M_000166", "Certified Invoice")
            AddMenuItem1("M_000167", "Packing List")
            AddMenuItem1("M_000168", "Certificate of Shipment")
            AddMenuItem1("M_000169", "Health/ Veterinary/ Sanitary Certification")
            AddMenuItem1("M_000170", "Shipping Order ")
            AddMenuItem1("M_000171", "Short Shipment Form")
            AddMenuItem1("M_000172", "Packing List")
        Catch ex As Exception
        End Try
        cmdCenterForm.Freeze(False)
        cmdCenterForm.Update()
    End Sub
   Sub AddMenuItem1(ByVal MenuID As String, ByVal MenuName As String)
        Try
            If MenuID = "M_000142" Or MenuID = "M_000143" Or MenuID = "M_000144" Or MenuID = "M_000145" Or MenuID = "M_000146" Or MenuID = "M_000147" Or MenuID = "M_000148" Then
                oMenuItem = SBO_Application.Menus.Item("M_000141")
            ElseIf MenuID = "M_000162" Or MenuID = "M_000163" Or MenuID = "M_000164" Or MenuID = "M_000165" Or MenuID = "M_000166" Or MenuID = "M_000167" Or MenuID = "M_000168" Or MenuID = "M_000169" Or MenuID = "M_000170" Or MenuID = "M_000171" Or MenuID = "M_000172" Then
                oMenuItem = SBO_Application.Menus.Item("M_000161")
            Else
                oMenuItem = SBO_Application.Menus.Item("M_000131")
            End If
            oMenus = oMenuItem.SubMenus
            oCreationPackage.Type = SAPbouiCOM.BoMenuType.mt_STRING
            oCreationPackage.UniqueID = MenuID
            oCreationPackage.String = MenuName
            oMenus.AddEx(oCreationPackage)
        Catch ex As Exception
        End Try
    End Sub

Similar Messages

  • Sub menu question

    How do I create verticle sub menus that when navigated over expand in the current menu.  I have only found options that display sub menus on top of the other main menu options.
    http://www.agrability.okstate.edu/  This is the site I am working on, I am looking to add sub menu options to the menu on the left hand side.
    Any advice is greatly appreciated!

    You already have a spry horizonal menu that you appear to be using as a vertical.  You might be able to insert another <ul> within the <li>, like so
    <ul id="MenuBar1" class="MenuBarHorizonal">
      <li><a class="MenuBarItemSubmenu" href="#">Item 1</a>
          <ul>
            <li><a href="#">Item 1.1</a></li>
            <li><a href="#">Item 1.2</a></li>
            <li><a href="#">Item 1.3</a></li>
          </ul>
      </li>
    If that does not work, perhaps you might just want to delete what you have and insert a vertical spry menu.
    I also notice all of your html files start with caps, looks like you have an Index html and a index.html.  I'm guessing that gave you a few headaches.
    Gary

  • Can I add a sub menu to Preferences menu?

    My plugin requires some settings to be done before using that. Can I add a sub menu to a Edit->preferences menu?

    No.

  • Activate BP Form in my add-on sub Menu

    Hi all,
    I have done my add-on Menu=Gestion portuaire and a Sub Menu=Fiche consignataire. I want to load BP form if i click on my sub menu. Help me please.

    Hello,
    See your question on thread: Duplicate system  form
    Locate your menu if in Fiche and replace MY_BP_FORM with you menu id
    I have posted there the menu activation code, you should put into sbo_application_menuevent section
    Select Case pVal.MenuUID
                Case "MY_BP_FORM"
                    If pVal.BeforeAction Then
                        sbo_application.ActivateMenuItem("2651")
                    End If
            End Select
    Regards,
    J.

  • Cluster (sub menu) submit button grayed out

    hello all
    as of today my compressor has stopped allowing me to submit the batch i set up.
    having sent an item from FCP to compressor, i get to set the options for settings and destination and then when i hit the submit button a second menu pops down regarding cluster options of which i have none. i add a name to this box yet no mater what other options i change the *submit button in this sub menu remains grayed out!*
    http://twitpic.com/jj7n2
    i have tried reinstalling compressor, and eventually the whole suit. i have removed the various prefs and qmaster stuff. i have used the fix compressor utility from digital rebel, repaired permissions and cleared out cache, but still *grayed out submit*.
    what thoughts cloud genii?

    I'm having the same problem.
    This comes after suffering persistent crashing of Compressor 3.5 on launch and finally having to reinstall to at least fix the crashing problem. But now I can't submit any processes - the button is greyed out.
    Can't remember setting this up originally, but it use to say "This Computer" for processing - do I need to add my computer to a list of available processors?
    Any help hugely appreciated,
    Simon

  • How to add sub menus in dreamweaver CC using Jquery Tabs

    How can I add sub menus to a Menu Bar in DreamWeaver CC. I know how to do it in CS6 using Spry Menu bar but it's just not as simple as that was now in CC.
    Any Help is appreciated!!

    jQuery tabs is a replacement for Spry tabs, not the Spry menubar.
    Stella333 found a good replacement for the Spry menubar http://forums.adobe.com/thread/1247870

  • Sub-menu of eSubmit is empty in non-English language (Russian)

    BPC 7.5
    BPC for Excel in English is working correctly, but in Russian sub-menu of eSubmit is empty

    Hi Sorin!
    Thank you for reply!
    Yes, russian language for BPC installed.
    Test was done with the same user for both language - in english everything is ok, in russian except submenu of "eSubmit" too.
    Only eSubmit's submenu is empty
    p.s. I see and can run eSubmit's macros in Excel (in russian) if I add them on Excel toolbar as icon (not from Planning and Consolidation -> eSubmit -> ..)
    Edited by: Maxim Pak on Nov 17, 2010 6:57 AM
    Edited by: Maxim Pak on Nov 17, 2010 7:19 AM

  • How to add sub pages in iWeb templates

    Anybody knows how to add a sub pages in the templates? I want to add sub pages under the main header, e.g. "About Us."

    Just to say that you can do it in the way that Steve has already said and I did this on one of my sites and it worked really well.
    Lets take your example of About George. You create your page About George and you include this page in your navigation menu. Now lets suppose that you have more that you want to add about George with two other pages - George at Work and George at Play. You want to link to these pages from About George, but you don't want the page names visible. Well, you can do this by creating the pages and then going to Inspector. Click on pages and then check don't include in navigation menu. Then you can create links on the About George page to get to the other pages George at Work and George at Play - use shapes or text boxes to create these with something like Back and Next on those pages to take you forward to the next page and then back to the main page.
    I think you will need to create your own nav bar to be able to achieve this, as it means linking to different pages, but it does work well.

  • Sub menu theme in revolution

    I am creating project with chapters in Revolution theme.
    The title of the clip revolves around the image in the rotating cylinder within the main menu and the sub menu.
    But when I go into the chapters submenu the words say <chapters revolution> not the title.
    How can the title be shown on these next levels?
    Thanks!

    This is from iDVD Help:
    +_Adding text to a menu_+
    +You can add nonclickable text (or a “text object”)—including titles, descriptions, personal commentary, and so on—to any menu. You can add as many lines of text as will comfortably fit on the menu and position it where you want.+
    +By default, the style for text added to a menu is the same as the default style of the menu title (that is, the text style that comes with the theme you have chosen). However, you can easily customize the typeface, font size, font style, and color of the text you add. Also, each text object on your menu can have a different appearance.+
    +To add text to a menu:+
    +Make sure the menu to which you want to add text is showing in the iDVD window.+
    +Choose Project > Add Text.+
    +The phrase “Click to edit” appears on the menu.+
    +Click the text once to highlight it, and then type the new text.+
    +An in-place control appears below the text. It has controls for changing the typeface, font style, and font size of the text. You can make changes if you want, or click on the menu outside the text to make the in-place editor disappear.+
    +With the text still selected, drag the text to the place you want it on the menu.+
    I hope this helps.

  • Cursor selection does not follow chapter order on sub-menu

    I used iMovieHD6 to add chapter markers to my large DVD project. They "shared" very nicely into iDVD8 and the Chapter Selection sub-menus were created nicely.
    The problem is that when I use the cursor arrows on the DVD remote (real or virtual, in or out of iDVD), the highlight jumps around the sub-menu items rather than moving in a logical order. For example, I have 4 sub-menus with 6 chapters in each. Let's use numbers for them starting with the upper left they are 1,2,3 and then at the lower left they begin 4,5,6. I am using the Reflection White theme. When I press the right remote cursor button it will move from 1 to 2 to 5 to 6 to 3 to 4 and back to 1. Note that this order is not the same for each sub-menu, but none of them go 1,2,3,4,5,6.
    I don't know what might be wrong or how to correct it, but I have a really big project that is otherwise perfect and I'd really like to get it out, please help!
    Thanks.

    I just wanted to add this before closing this topic.
    After poking around with the Reflection theme I better understood what Len was talking about. It appears that there are no modifiable parameters in the theme itself that control the order of cursor's motion through the buttons. That I assume is hard-coded into iDVD and follows a pre-programmed logic.
    The point of failure is the position and orientation of the buttons in the Reflection theme's sub-menus when added automatically. They are made to look to the viewer as though they are set on an angled surface and viewed at an angle from above. While our brains can process this effect nicely, iDVD's cursor logic doesn't fare as well.
    The work-around is fairly simple: Realizing that iDVD treats all chapter buttons as though they are two-dimensional objects on a flat surface, you must re-arrange them so that from top-left to bottom-right they follow a logical order, with the first buttons higher and farther left than the later-selected buttons. You don't have to move them very far to get the desired result and it doesn't have to affect the overall appearance of the menu in a noticeable way.
    A slight rearrangement in my case left the overall look of the chapter menu the same but yielded a zig-zag flow through the buttons as follows:
    [1] [3] [5]
    [2] [4] [6]
    Pressing the right cursor key jumps from top left to bottom left to top center then bottom center then top right and finally bottom right before going back to the start. Granted this is not quite "right" in that if iDVD could "see" the menu the way my brain does it would go left to right across the upper row of buttons rather than zig-zagging, but I figure that as long as the user can understand how to get to the button they want it'll be fine.
    If you really need your menu selection to move linearly left to right with those arrows and with the up/down arrow used to move it vertically, then you have to arrange the buttons on the menu in a rectangular pattern with the top of each row of buttons all in a nice horizontal line. Note that's not the same as the alignment line that Reflection provides for you, it's a true horizontal line in relation to the monitor screen.
    I'd much prefer that iDVD revisit the logic of the cursor control code, perhaps adding the choice of allowing the numerical sequence of the chapters to dictate the order of the cursor's motion rather than their relative position on the screen, but since they don't call me for advice, the above will likely have to do.

  • Edit Sub Menu Created With Dreamweaver

    Does anyone know how to edit a sub menu that was created
    using Dreamweaver? I need to link a new page to the sub menu but I
    can't seem to find anyway to unlock the menu to amend the link.
    Alternatively, one of my pages appears to be stuck on the server
    saying that it is being edited by Macromedia Contribute after I
    tried to publish it (this is the page I've re-created but can't
    create a link to) so does anyone know how I'd re-set it or
    something? I had thought of uninstalling Contribute then
    re-installing it but I don't know if it'd make much difference?

    Open the template for this page (Select Modify > Templates > Open Attached Template) and add these comments into the <head>...</head> section:
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Eddie and Alice Smith</title>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="css/main_css.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" /></head>
    You have probably deleted these comments when creating the template. These lines allow Dreamweaver to add code into the <head> section. Save your template and say Yes to allow the changes to pages that use this template (or just to the pages you want).
    See http://help.adobe.com/en_US/dreamweaver/cs/using/WScbb6b82af5544594822510a94ae8d65-7acda.h tml for more information.

  • Menubar load modules for each sub-menu

    I am creating an application using the MENUBAR but cannot get a module to open when a sub-menu is clicked. I have stripped my app down to bare bones to eliminate other factors. The menubar has several main options, such as, Button1, Button2, Button3 and then each has a sub-menu dropdown. If Button1 has Button1Sub1 and Button1Sub2 dropdowns I want to have a different module launch when either of the sub-menus are clicked.
    I have been successful in using ModuleManager to open a particular module referencing the creationComplete="moduleLoadHandler()" but not by selecting a menu item from the menubar. My application needs to be as user-friendly and Windows-like as possible. There are many different modules which need to be loaded and unloaded.
    I have attached a screenshot image of my project tree and circled the ActionModule.swf file to show its location.
    I have attached my code below:
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="creationHandler();" >
        <mx:Script>
            <![CDATA[
                import mx.controls.menuClasses.IMenuBarItemRenderer;
                import mx.controls.MenuBar;
                import mx.controls.menuClasses.MenuBarItem;
                import mx.controls.Alert;
    import mx.modules.Module;
    import mx.events.ModuleEvent;
    import mx.modules.ModuleManager;
    import mx.modules.IModuleInfo;
    import mx.rpc.events.ResultEvent;
    import mx.rpc.events.FaultEvent;
    import mx.events.FlexEvent;
    import mx.events.MenuEvent;
                import mx.collections.*;
                public var _moduleInfo:IModuleInfo;
                [Bindable]
                public var menuBarCollection:XMLListCollection;
                private var menubarXML:XMLList =
                    <>
                        <menuitem label="Menu1" data="top">
                            <menuitem label="MenuItem 1-A" data="1A" itemClick="moduleLoadHandler()"/>
                            <menuitem label="MenuItem 1-B" data="1B"/>
                        </menuitem>
                        <menuitem label="Menu2" data="top">
                            <menuitem label="MenuItem 2-A" type="check"  data="2A"/>
                            <menuitem type="separator"/>
                            <menuitem label="MenuItem 2-B" >
                                <menuitem label="SubMenuItem 3-A" type="radio"
                                    groupName="one" data="3A"/>
                                <menuitem label="SubMenuItem 3-B" type="radio"
                                    groupName="one" data="3B"/>
                            </menuitem>
                        </menuitem>
                        <menuitem label="Menu3" data="top">
                            <menuitem label="MenuItem 3-A" data="3A"/>
                            <menuitem label="MenuItem 3-B" data="3B"/>
                        </menuitem>
                        <menuitem label="Menu4" data="top">
                            <menuitem label="MenuItem 4-A" data="4A"/>
                            <menuitem label="MenuItem 4-B" data="4B"/>
                        </menuitem>                                       
                    </>;
                private function creationHandler():void{
    menuBarCollection = new XMLListCollection(menubarXML);
    private function moduleLoadHandler(event:ModuleEvent ):void{
    canvas.addChild( _moduleInfo.factory.create() as Module );
    _moduleInfo = ModuleManager.getModule('ActionModule.swf');
    _moduleInfo.addEventListener(ModuleEvent.READY, moduleLoadHandler);
    _moduleInfo.load();
                // Event handler for the MenuBar control's itemClick event.
                private function menuHandler(event:MenuEvent):void  {
                    // Don't open the Alert for a menu bar item that
                    // opens a popup submenu.
                    //if (event.item.@data != "top") {
                    //    Alert.show("Label: " + event.item.@label + "\n" +
                    //        "Data: " + event.item.@data, "Clicked menu item");
                private function onTopSelection(event:MenuEvent):void{
                    var mb:MenuBar=event.target as MenuBar;
                    var selectedIndex:int=mb.selectedIndex;
                    for (var i:int=0;i<mb.menuBarItems.length;i++){
                        if(i==selectedIndex){
                            (mb.menuBarItems[i] as MenuBarItem).setStyle("fontWeight","bold");                   
                        else{
                            (mb.menuBarItems[i] as MenuBarItem).setStyle("fontWeight","normal");                           
             ]]>
        </mx:Script>
        <mx:Canvas id="canvas" height="75%" width="75%"
            paddingTop="10" paddingLeft="10">
            <mx:MenuBar labelField="@label" itemClick="menuHandler(event);" dataProvider="{menuBarCollection}" change="onTopSelection(event)" />
        </mx:Canvas>
    </mx:Application>

    Hi,
       I am also doing the same way, but ended up with some issues.
    I have a Main Application with a menu Bar on Top and Rest of the area occupied by a ModuleLoader.
    First I set the URL to login module, on successful login I initialize my menu Bar based on User role and load a new module, it contains only a SuperTabNavigator.
    On click of an item in my Application Menu, I add a Custom Componenet built on Canvas (Named MyCanMod , this contains a Module loader and a progress bar in it , I have attached the code) as a tab to the tab navigator.
    On menu item click, I take the data of my menu item and set that as the URL of my Module Loader inside the Custom canvas. Then it is added as a tab to my tab navigator.
          private function openItem(event:MenuEvent):void
    var myModule:MyCanMod = new MyCanMod();                tabNav.addChild(myModule);
                    tabNav.selectedChild = myModule;
                    myModule.label = event.item.@label;
                    myModule.icon = document_icon;
                    myModule.urlParam = event.item.@module;
    urlParam is a bined to the module Loader url in my Custom componenet.
    All works fine.  I am not unloading any modules and all the module loader are set to current domain.
    When the user logs out and logs back with out refreshing the browser I get Type Error or some time null Object error and it is random. If I refresh the browser and login back, every thing is fine.
    I do have reference for IDragManager,HistoryManager,PopUpManager,RemoteObject in main application.
    I am not concerned about unloading modules now, but then on Tab close event I unloaded the module, and that did not solve the problem.
    I get an error like
    TypeError: Error #1034: Type Coercion failed: cannot convert flexlib.controls::PromptingTextInput@6152a851 to flexlib.controls.PromptingTextInput.
                at mx.core::UIComponent/createReferenceOnParentDocument()
                at mx.core::Container/createComponentFromDescriptor()
                at mx.core::Container/createComponentsFromDescriptors()
                at mx.core::Container/createChildren()
                at mx.core::UIComponent/initialize()
                at mx.core::Container/initialize()
                at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()
                at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()
                at mx.core::Container/addChildAt()
                at mx.core::Container/addChild()
    Any help is appreciated; I am really struck with it, please help.

  • Horizontal sub menu in ie, need vertical?

    Built a SpryMenuBarHorizontal with one sub menu. Works fine in all browers except ie.In ie sub menu is horizontal instead of vertical.
    Any help?
    Thanks

    I put your page through the validator:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Foptionsclinic.net%2Ffirst_step.ht ml
    Main problem it identified was "end tag for "p" omitted."
    I looked at your page in "view source" and see this:
    <div id="headernav2">
      <p>CALL US: 817-599-6700<br />
        HOT LINE:  800-392-HELP<br />
        EMAIL US:  <a href="mailto:[email protected]">[email protected]</a><br />
        CHAT WITH US:
    I think that <p> element is not closed.
    Whether it has anything to do with your spry menu is yet to be seen.  I fix my own code in this way.  I do not understand why some things work or do not work.  My suggestion to you is add these tiny little characters in your code </p> and test it.  If it works call me a Coding deity.  If it doesn't work, remove it and post again content in the knowledge that someone, a complete stranger, was prepared to have a look at your page.
    For my part, I have a hunch that it does have something to do with your menu.  If not, it needs fixing anyway.
    Regards
    Martin

  • Creating sub menu's under Abstract Action.

    Folks,
    I am trying to create a sub-menu under abstract actions.
    But when I run the application,I can only see 'Create New Positions' menu item;
    and cannot view/invoke the sub menu options(ie Create Position One/Two).
    Is there a way to create sub menu's under the main action menu? (in the code below please)
    Thanks,
    final ArrayList<Action> actions = new ArrayList<Action>();
    actions.add(new AbstractAction("Create New Positions") {
         public void actionPerformed(ActionEvent e) {
                   // Sub Menu options          
                   actions.add(new AbstractAction("Create Position One") {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                   // Code to create position one                         
         public void actionPerformed(ActionEvent e) {
                   // Sub Menu options          
                   actions.add(new AbstractAction("Create Position Two") {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                   // Code to create position two                    
    });

    Hi Thomas.behr
    I tried as you suggested :
    final ArrayList<Action> actions = new ArrayList<Action>();
    actions.add(new AbstractAction("Position Creation..."){
    public void actionPerformed(ActionEvent e) {
                            JMenu PositionMenu = new JMenu(new AbstractAction("Create Position one"){
              @Override
              public void actionPerformed(ActionEvent e) {
                   // TODO Auto-generated method stub
                   // actions.add( PositionMenu).... as action expects an Action
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Menu Button from sub menu to main menu (transition movie in the way.)

    In the general tab of the disc menu I set the menu button to go to the main menu.
    When I click "menu" on my remote in simulation from a sub menu I expect it to return me to the the main menu.
    However, clicking menu from a sub menu automatically brings me up one connection.
    I have transition movies that are between the main menu and the sub menu.
    So effectively, the menu button is a loop if a viewer tries to navigate upward with the menu button from a sub menu. They see the transitional movie and return to the sub menu they were trying to navigate from.
    On page 609 of the manual it says...
    Menu: Supported by all elements that can set remote control settings (disc, track, story, marker, and slideshow) except menus. You should generally link this button to the last menu viewed.
    Is there a work around that will allow me to make the menu button link from a sub menu to the main menu, even if I have a transition movie in between?
    Thanks,
    Tom
    Power Mac Dual 1.0 GHz G4, Quick Silver   Mac OS X (10.4.3)   1.5 Gig Ram, 250 gig internal drive, 2 x G-Raid500, FW800 Sonnet Card, AJA IO
    Power Mac Dual 1.0 GHz G4, Quick Silver   Mac OS X (10.4.3)   1.5 Gig Ram, 250 gig internal drive, 2 x G-Raid500, FW800 Sonnet Card, AJA IO

    Hang on Tom - are you saying that you are in a sub menu, pressing the 'menu' button on your remote control, seeing the transition and ending back at the menu you started from?
    I would expect this if you used the menu button...
    What happens is the menu button acts as a resume function if you are in a menu. That is, it will play the last piece of footage - your transition. This is set to go back to the sub menu, so that's where you end up. Read those details again... the bit where it said 'except menus'.
    If you are in a menu and want to go up one level then you need to either use the Title button (if the title menu is the one you want to get to), or the return button (which won't work all that well). The best way, however, is to add a button on your menu screen which lets the viewer click it to go to the menu that you want.

Maybe you are looking for

  • Help!! 17+ rated apps won't show up on my Ipod Touch

    Help!!  None of the 17+ rated apps I downloaded from the app store will show up on my Ipod touch after I synch it. Does anyone know how to fix this? Also it won't let me dowload these apps from the app store on my ipod. Thanks Found the problem. I co

  • Printing issues with D1455 and Airport express

    Hi, I'm having problems printing with an HP Deskjet D1455 and the airport express. The printing always halts after printing half the page. Attached is another post related with this problem: "HI, i just purchased the Deskjet 1455 and connected to the

  • How to Auto Hide the Tree control

    Hi,      Iam struck with the new requirment in my project. I need to make the tree autohide when it looses focus. I have some items in my tree on selecting the item, i should show the content of that page. I guess i need to write some logic in Mouse

  • What is the table of future cash flows (coupan flows).

    Hi experts, Can you please tell me what is the table of future cash flows. I am using securities module in transaction manger. I am using t.code- TS01 for creating a deal transaction. it is generating a future cash flows ion case of bonds. but not ab

  • Pictures in wp8.1

    Videos are now shown like pictures in photo colection. It mean its shown on main screen between pictures. Want to say: start of video is always black and if not and its forexample pornmovie its anyoing if it show up on mainscreen. Will be great if u