WC Spaces sidebar Sub-Menu, is it possible?

Hello,
I have a question reguarding WC Spaces navigation.
I have seen that it´s possible to create new pages in the application, and each page will have a new tab in the top bar.
My question is, is it possible to alter the pages hierarchy to create a new level, and add a menu side bar on the left?
Thank you!
Ex:
[HOME - *DASHBOARDS* - HELP] <- Top menu bar(level1)
Menu list (level2)
Dashboard1
Dashboard2
Dashboard3

Hi John,
Unfortunately there's only one level of page hierarchy. However, you can change the way page tabs are displayed. Please read these 2 docs:
[Customizing Site Templates|http://www.oracle.com/technology/products/webcenter/pdf/owcs_ps1_site_template_wp.pdf]
[Extending Spaces|http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf]
More info here .
Good Luck!

Similar Messages

  • How do I make a "play all" in a sub menu folder?

    I am arciving my homevideos onto dvds. and I make sub menues of each day of recorded movies. but as default I will have to play all the files in the sub menufolder manually.
    How can I apply a "play all" to these sub menu folders?
    or is there an other way to make them all play one after the other?

    How can I apply a "play all" to these sub menu folders?How can I apply a "play all" to these sub menu folders?
    Possible with DVDSP (part of apple's FCS 2) as well as with a third party app called Roxio Toast but not iDvd'08 (in terms of sub menus) .... But there is a work around in that the slideshow area/s which are mainly intended for stills now address movies too since apple incorporated this into iDvd with its latest version.
    or is there an other way to make them all play one after the other?
    Suggestion: use the slideshow feature in iDvd'08. It now can address photos as well as movies and the added benefit is that it will scale both to the TV Safe area. Much cleaner this way IMO.
    Message was edited by: SDMacuser

  • Horizontal Spry Menu Bar with Horizontal Sub Menu

    I have created a horizontal menu bar with only one main menu item leading to a sub menu. I would like this sub menu to display horizontally also, instead of vertically as added by default.
    I am relatively new to dreamweaver and would appreciate any help possible.

    Came across the fix by accident thru extensions in menu bar,
    and choice of cursor for each section. Feeling happy! Happy New
    Year everyone.

  • 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.

  • How to personalize "menus" so sub menu can be zoomed automatically

    Hi,
    I have done a personalization in which i added a zoom function of responsibility details in user creation form(in sysadmin resp). That is working fine. I then added a zoom function in resp form of User menu which took me directly to the Menu entry form. Now i want to do personalization by which i can zoom in to the sub menu that is attached to the Main Menu(through special icon in tools menu). My understanding is that the global variables should only be used when navigating between 2 different form. Now i want to navigate to the sub menu which is the same form.
    I have tried some personalization but to no avail. Kindly can anybody provide me with a detailed idea of how this can be made possible.
    Regards,
    Fawad.

    Hi,
    I have done a personalization in which i added a zoom function of responsibility details in user creation form(in sysadmin resp). That is working fine. I then added a zoom function in resp form of User menu which took me directly to the Menu entry form. Now i want to do personalization by which i can zoom in to the sub menu that is attached to the Main Menu(through special icon in tools menu). My understanding is that the global variables should only be used when navigating between 2 different form. Now i want to navigate to the sub menu which is the same form.
    I have tried some personalization but to no avail. Kindly can anybody provide me with a detailed idea of how this can be made possible.
    Regards,
    Fawad.

  • Why can't I open items in iDVD sub menu & Open Existing project lists?

    Recently I installed *Jam Pack-Music of the World*. Since then, my iMac experienced one Kernal Panic while I was using iMovie. Later I tried to burn the movie I had been working on, iDVD got stuck at audio encoding and then quit unexpectedly a while later. When I tried to +'Open Existing project'+ in iDVD, I noticed the list of files in the *Movie folder* of the iDVD dialogue window are shaded grey and could not be opened. (They could however be opened from the *Documents foder* where they are shown as .dvdproject files.) Additionally it became clear that about 40-50 GB of storage space on the hard drive had been lost. I have also noticed that the items listed in the *iDVD sub menu* (tool bar) are also grey and cannot be opened - although if I first open a project from the documents folder these items then show black and can be opened. I've had my iMac for 18 months and had no real problems till now. I'm new to computing and at a loss as to what's happened and how to rectify it.

    I don't purport to be an expert, but since you have not gotten a response as yet, I'll give you my comment.
    If you got a Kernal Panic, your computer is in need of some maintenance. The following recipe is from one of the gurus on the iMovie formum in a different context. " Restart from your install disk (by holding down the C key as you restart), and go to Disk Utility, then repair the hard disk. Restart as normal and then repair permissions from the same utility."
    Make sure that you have enough free space on your hard drive for these programs to work -- at least 15GB and better 25GB.
    You could also try uninstalling Jam Pack-Music of the World, and see if that clears up the problem.
    Good luck.

  • Menu Text Rollover Possible?

    I am a classical musician, and I'm creating a DVD of my work to send out to managers and potential sponsors. Towards that end, I've put together an iDVD project using the "Reflection Black" Theme provided within iDVD. For the most part, I'm quite happy with the results, however I am concerned that the way I've got my three musical selections laid out is not foolproof from a user navigation point of view. For a button shape, I'm using the leftwards-pointing arrow (from the Bullets sub-menu in the Buttons section). Here's how my menu of video-recorded musical selections is laid out, using the "greater-than" symbol as a stand-in here:
    1. Brahms
    2. Berlioz
    3. Beethoven
    My concern is that when the main screen comes up, the viewer will see these three composer's names, but not necessarily immediately understand how to access the three musical selections. If the user drags the pointer in the precise area of the buttons, they do appear in order, which I think indicates fairly clearly how to make the selection "hot" and thus "selectable". But I'd like users to be able to select the menu items without having to point to such precise spots, or at least find a way to indicate exactly where they should point. In this latter regard, I tried putting a "box" of text underneath the list of composer's names, saying "Click next to composer's names to play selections", however this didn't work well with the way the opening screen of the theme rolls out. The theme roll-out is rather nice; it starts with the video I've put in the drop boxes cascading by, then my name fades into view, and then the composer's names fade into view. But when I include the box of text, it appears on screen right away with the scanning drop boxes, before my name and the composer's names transition in.
    The format I'd like to see, if possible, is for the composer names to change color and/or enlarge when the pointer is rolled over the composer names, like a standard hyper-link in a web page. But any and all ideas and suggestions are welcome. Thanks.
    Tony

    First off, the hyperlinks on web pages are much more advanced than what is allowed in the DVD specs.
    With DVDs you have an overlay that contains the changing part of the buttons, in this case the "greater-than" buttons. The overlay is very limited. There is only two levels of anti-alasing. This means that any sort of curve (type has a lot of curves) is going to come out very "jagged". This is why on DVDs that you might own/rent, they never highlight the text in the button. Typically, you will see either an underline or some sort of simple graphic next to the text. Go rent a movie tonight, any movie, and you will most likely find thats true.
    Now with DVD SP, you can highlight the text, but as mentioned above you really do not want to do that.

  • RE: Have a Menu that needs sub menu for submenus...

    I do not know if this is the right forum for this.
    However here goes.
    I have a Flash Menu that I am working with using Action
    Script 2.0 inf Flash CS3. I have successfully created the Main menu
    and the sub menu, however I need a sub sub menu for the sub menu to
    operate the same way the sub menu does for the main menu.
    I do not even know where to begin doing this.
    I have attached the .fla CS3 file. maybe someone can help me
    do this or point me in the right direction possibly???
    thank you Adobe members and to anyone who can help with this.
    If this requires some kind of payment. it's not a problem I can do
    that via paypal acct or send a check or wire the money.
    I just really need to get this done for a client ASAP.
    note: I will send the file if anyone is interested via
    trillian, ftp or email or some other viable form of digital
    communicatiion.
    thanks again,
    Dan

    Hello,
    You need to use p_body_html then construct an html email to be sent to feed into that (you also need to provide the p_body for email clients that don't support html)
    To get give a link to the specfic item you want you need to use something like:
    'http://your.server/pls/apex/f?p=100:1:::NO::P1_ITEM_ID:'||ITEM_ID
    Where 100 is you app id, 1 is your page number, P1_ITEM_ID is the item that sets your primary key for the page and ITEM_ID is the primary key of the item you want to display.
    Hope this helps
    Luke
    Message was edited by:
    LWhitelock

  • Create new sub-menu item....how???

    Hi,
    I have a site created with Dreamweaver templates.
    I can create a new page from a template but i want to make
    the page a sub-menu page.
    For instance i have an 'about us' page and from this 'about
    us' page i want to create a sub page. None os these areas have been
    locked but i can't find a way to do it.
    Is it possible?
    am i missing something?
    Any tutorials anywhere?
    Thanks for any help
    J

    You'll probably want to make any menu changes (since the menu
    may be an element that is present on all your pages...hence the use
    of a template) in the non-editable regions in Dreamweaver, then
    uploade the template and do a template update in Contribute
    (Edit-->Format-->Template
    Properties-->Apply-->OK-->Publish).
    As a rule, your menu/navigation should be laid out in the
    template prior to using the template to create new pages (not
    exactly sure what you mean by "sub pages"). In other words, your
    template navigation/menu determines the main navigation you want
    available on EVERY page you create with the template. If you then
    create a new page in Contribute using the template, you're free to
    create links (in the editable regions) to any page you want
    (existing or new), including pages that are already linked-to in
    the menu.
    Hope this helps!

  • Can sub-menu be 2 lines? Please advise

    Hi,
    The client wants a sub-menu item to be quite long so the only way it appears is to drop the menu title onto 2 lines.  when I tried stretching the box in hopes it would drop it would not.  See below:
    So i'm wondering what i need to do or if it's possible to drop a sub-menu item's name onto two lines.
    Possible?  Thanks.

    Hi Michael,
    Is this a manual menu or an automatic one? Automatic menus (where menu labels are automatically derived from page names) can't be broken into two lines.
    Abhishek

  • Sub menu for buttonchoice

    Hi Experts,
    I am using NW 7.3.
    Is there an option to create a sub menu for ButtonChoice control ?
    For example:
    When i click on my ButtonChoice control i get a menu with 3 entries: one. two and three
    The "two" entry should be able to open a submenu .
    Is it possible in WD Java?
    Regards,
    Slavik.

    Hi,
    GO thru this document for more info on Buttonchoice:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b06c8c9a-19a4-2b10-d985-9ae7a4383478
    Button with menu options
    Regards,
    Poojith MV

  • How to create a sub menu for the transaction se38

    Hi All,
    I have created menu item in se38 using menu exit.
    By using the enhancement SEU00002 .
    That menu item is displayed under utilities menu bar.
    But i am unable to create sub menu for that.
    My requirement is to create sub menu to the custom menu item.
    How can we create a sub menu to the transaction se38.

    Hi,
    it looks like that user exit SEU00002 offers only one extra function +CUS. This function then calls FM EXIT_SAPMS38E_010. Hence I do not think that it is possible to create sub menu with this user exit.
    Anyway you can try to modify SAP standard. You need to modify menu for SE38 and then add your code for handling new function codes. You can easily find where you will have to add your code for handling functions from your sub menu. You just need to look for usages of the FM EXIT_SAPMS38E_010.
    Cheers

  • I want to have JMenu on a Side bar(JPanel) with sub menu.

    I want to have the JMenu on the sidebar(which is a
    JPanel placed at WEST). This JMenu shall have the sub
    menu with it. I got the JMenu on the Sidebar but when
    i take mouse over(or click) the MenuItem it is
    displaying the sub Menu. I am attaching the my code.
    Can anyone please let me know why it is not displaying
    the sub menu and what should be added to my code to
    work?
    Thanks in Advance(see below for code)
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class SideBarMenu extends JFrame {
         JMenuItem menuItem1,menuItem2;
         JMenu books, softwares, tools;
         JSeparator horizontal1, horizontal2,horizontal3;
         JPanel p1, p2;
          public static void main(String[] args) {
           SideBarMenu vAR =  new SideBarMenu();
         public SideBarMenu() {
              super("Side Bar");
              setSize(500,500);
              setLocation(150,100);
              setResizable(true);     
              Container content = getContentPane();
              p1 = new JPanel(new BorderLayout());
              p2 = new JPanel();
              p2.setLayout(new GridLayout(20,1));
              p2.setBorder(BorderFactory.createLineBorder(Color.black,1));
              books = new JMenu("Books");
              horizontal1 = new JSeparator( JSeparator.HORIZONTAL );
              softwares = new JMenu("Softwares");
              horizontal2 = new JSeparator( JSeparator.HORIZONTAL );
              tools = new JMenu("Tools");
                                    horizontal3 = new JSeparator( JSeparator.HORIZONTAL );
              //sub Menu for menu "books"     
              menuItem1 = new JMenuItem("Java");
              books.add(menuItem1);
              menuItem2 = new JMenuItem(".Net");
              books.add(menuItem2);
              //sub Menu for menu "Softwares"          
              menuItem1 = new JMenuItem("Java");
              softwares.add(menuItem1);
              menuItem2 = new JMenuItem(".Net");
              softwares.add(menuItem2);
              //sub Menu for menu "tools"          
              menuItem1 = new JMenuItem("Java");
              tools.add(menuItem1);
              menuItem2 = new JMenuItem(".Net");
              tools.add(menuItem2);
              p2.add(books);
              p2.add(horizontal1);
              p2.add(softwares);
              p2.add(horizontal2);
              p2.add(tools);
              p2.add(horizontal3);
              p1.add(p2,BorderLayout.WEST );
              content.add(p1);
              setVisible(true);
    }

    Hi Ashwin,
    I saw the above code which is approaching my requirement... Thats cool man. Taking that as reference i modified it to make it what i want. The code i have modified and which is very closer to my requirement is attached below. I have set the Windows Look and Feel, because its easy to track my problems with it. The problems am having are:
    1) When the mouse is removed from the menu its submenu is not disappearing.
    2) When i take the mouse over the menu its making the name(Books/softwares/tools) of the menu invisible.
    3) When i take the mouse over the sub menu items they are not getting highlighted, which means they are not listening
    I hope u will solve these issues for me...
    Also make the menu items work ie., just make them print when i click submenus like "Clicked books->java" and "clicked softwares->.Net" so that i get an idea of events....
    Many Thanks .
    Here we go,
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Container;
    import java.awt.GridLayout;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionAdapter;
    import javax.swing.BorderFactory;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JMenu;
    import javax.swing.JMenuBar;
    import javax.swing.JMenuItem;
    import javax.swing.JPanel;
    import javax.swing.JPopupMenu;
    import javax.swing.JSeparator;
    import javax.swing.UIManager;
    public class SideBarMenu4 extends JFrame
        JMenuBar menuBar;
        JPopupMenu popup = new JPopupMenu();
        JMenuItem menuItem1, menuItem2;
        JMenu books, softwares, tools;
        JLabel mainMenu = new JLabel("Main Menu");
        JMenu subMenu;
        JSeparator horizontal1, horizontal2, horizontal3;
        JPanel p1, p2;
        public static void main(String[] args)
            SideBarMenu4 vAR = new SideBarMenu4();
        public SideBarMenu4()
            super("Side Bar");
            setSize(500, 500);
            setLocation(150, 100);
            setResizable(true);
            setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            Container content = getContentPane();
            p1 = new JPanel(new BorderLayout());
                        try {
              //MetalLookAndFeel.setCurrentTheme(new MacMetricsTheme());
                 UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");            
            } catch(Exception e) {}
            p2 = new JPanel();
            p2.setLayout(new GridLayout(30, 1));
            p2.setBorder(BorderFactory.createLineBorder(Color.black, 1));
            books = new JMenu("Books");
            horizontal1 = new JSeparator(JSeparator.HORIZONTAL);
            softwares = new JMenu("Softwares");
            horizontal2 = new JSeparator(JSeparator.HORIZONTAL);
            tools = new JMenu("Tools");
            horizontal3 = new JSeparator(JSeparator.HORIZONTAL);
            // sub Menu for menu "books"
            menuItem1 = new JMenuItem("Java");
              popup.add(menuItem1);
            //books.add(menuItem1);
            menuItem2 = new JMenuItem(".Net");
              popup.add(menuItem2);
              popup.setPopupSize(100,50);
            menuBar = new JMenuBar();
            menuBar.setLayout(new GridLayout(0, 1, 5, 5));
            books.add(popup);
              books.setComponentPopupMenu(popup);
            books.addMouseMotionListener(new MouseMotionAdapter(){
                public void mouseMoved(MouseEvent e)
                     popup.show(books, 88, 0);
              softwares.add(popup);
              softwares.setComponentPopupMenu(popup);
            softwares.addMouseMotionListener(new MouseMotionAdapter(){
                public void mouseMoved(MouseEvent e)
                     popup.show(softwares, 88, 0);
              tools.add(popup);
              tools.setComponentPopupMenu(popup);
            tools.addMouseMotionListener(new MouseMotionAdapter(){
                public void mouseMoved(MouseEvent e)
                     popup.show(tools, 88, 0);
            // p2.add(menuBar);
            p2.add(books);
              p2.add(horizontal1);
              p2.add(softwares);
              p2.add(horizontal2);
              p2.add(tools);
              p2.add(horizontal3);
            p1.add(p2, BorderLayout.WEST);
            content.add(p1);
            setVisible(true);
    }

  • Need Flash sub-menu to overlap HTML content

    I have a Flash header with a menu item that drops down a sub menu and takes up an additional 200px or so of space. I need the menu to overlap the HTML content below without having to make the SWF file taller, since that would push everything down. Is there a way to do this?
    Thanks.

    IIRC, you'll need to make the SWF bigger, set it's wmode to transparent, and negative margin the content below it to ghetto it up under the swf.
    HTH
    -Ted

  • Muse 2014 -sub menu items appearing on roll-over etc.

    Hi, complete newbie, so sorry if this has already been covered elsewhere. Only started using Muse about 1 month ago and now using Muse 2014 - using horizontal menu widget and discovered how it now shows sub-menus when hovering over the main menu item- I find this great!
    I want a 'Contact Me' page with a basic form and this is not a problem, however, I want the sub-menus to appear when hovering over the other main menu items, but not the contact me page - might be completely off here, but created a 'Thank you' page as a child page of the contact me page and only want this displayed (not as a sub-menu choice when hovering over the contact me main menu item) when they have clicked the submit button on the form (I know how to set this re-direction in the forms options). Have tried playing with menu on the master page - switching off the edit together and changing settings on only the contact me menu item - without success- seems to apply to all main menu items.
    I would like to know how to achieve sub-menus on other menu items - but not on contact me item;  or whether I am going about trying to have a 'Thank you' response when someone submits the contact me form in the completely wrong way - can this be better achieved by other means?
    I would really appreciate your advice and help. My published site is 'onyerbikegeordie.uk' with the main menus - except not with a contact me page as yet, but would  give you an idea of what I am trying to achieve except for a contact me page.
    Sorry for the long post, but thanks for reading and in anticipation of your help!
    Joe
    Message was edited by: Joe Fitzpatrick

    Hi, managed to find the answer to this myself. In Plan, right-click on page and select Menu Options > Exclude Page from Menus. Job Done!
    Joe

Maybe you are looking for

  • Create list of materials with its purchase order texts from material master

    Dear all Simple question I do wanna ask. Just need to get out a list with my materials with its purchase order texts from the material master. As I do know that PO text is not stored on a table, it might be difficult to get it out from the system. Do

  • HOW DO I TYPE TEXT IN PDF FILE

    HOW DO I TYPE TEXT IN PDF FORM

  • Print Greyscale Within A Colour Document?

    Running: Windows XP & Acrobat Pro X Hey Guys, I have a 60 page document that needs printing, and there are 40 text only pages containing black and white and 20 pages with colour. I am wanting to know how to lock down those 40 pages so they print in g

  • Additional tags in Multi Maping

    Hi all, We are using multimapping 1:n to send separate soap messages for each call to soap receiver. we found there are additional tass (Message 1, Message 2...) after multimapping in the targer structure, which we are passing to soap. message with t

  • Where is the Source of JavaFX

    I have download the JavaFX SDK, it looks contains the src.zip only for the core runtime, but not include src for: javafx-gui.jar javafx-swing.jar websvc.jar And it looks the source is also removed from the openjfx-compiler SVN trunk, So can somebody