Problem with submenus appearing

I created a child page and asked it NOT be listed in submenus thru page's menu options. But it still comes up in submeunus. Oddly it comes and goes on main menu but is always there are as a submenu on the child page.  How can I prevent the page from showing up in submenus?

This is beyond the scope of Muse currently. At this point we are focused on design that involves no code, while this is quite code heavy.
Putting that aside, as a coder, not as someone on the Muse team, here is what I personally would do: do not consider this Muse support, just tips from someone who knows some code.
- Right click the page that has the table you want and choose 'view source'
- Copy all of this code and paste it into your preferred text editor. Notepad works fine.
- Leave the original source window open so you can see the line numbers
- Delete all code that has to do with menu and instruction:
     - Lines 73 - 106, the div titled "header"
     - Lines 109 - 113, the div titled "menu"
     - Lines 127 - 129, the instruction text
     - Lines 801 - 803, the div titled "footer"
     - Lines 804 - 807, the div titled "copyright"
After those are deleted, copy and paste all the code into your Muse page. you will see it appear in Muse and it should function properly when you preview. if it looks weird it is because there is a related .css file that needs to be in a specific location. It looks like copying your ajax folder to the same folder this page is in may do the trick, but I'm not sure of the exact location it needs to be in, you may have to experiment with different locations.
This may take some trial and error beyond the instructions here. To make adjustments to the code from within Muse, right click the form and choose HTML. This will give you the chance to edit the code further to more closely achieve the result you need.

Similar Messages

  • [svn:fx-trunk] 8277: Use blendMode="normal" to fix problems with disabled appearance when baseColor is set.

    Revision: 8277
    Author:   [email protected]
    Date:     2009-06-25 17:46:00 -0700 (Thu, 25 Jun 2009)
    Log Message:
    Use blendMode="normal" to fix problems with disabled appearance when baseColor is set.
    Bugs: SDK-19745, SDK-19762
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-19745
        http://bugs.adobe.com/jira/browse/SDK-19762
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/PanelSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextAreaSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/TextInputSkin.mxml

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • Problems with SubMenus

    Hi all...
    I have a Menu called ActionEvents which has a JMenu called mouseEvents. What I want is to add a submenu to this (mouseEvents), I tried the following:
    mouseEvents.add(new JMenuItem("New Item"));This compiles fine but doesnt show up on the application. However if I add another JMenu to ActionEvents e.g submenu as below, it adds the submenuItem to submenu.
    JMenu submenu = new JMenu("submenu");
    eventsMenu.add(submenu);
    submenu.add(new JMenuItem("submenuItem"));Works fine for submenu but not mouseEvents.
    Does any one have any ideas?
    Thanks for any assiatance...

    Maybe I should take this to the bug report forum, but I was wondering if it might not be me. I'm pretty sure it isn't, but it is such a big problem I can't believe it would have not been caught and fixed before.
    BTW, there is no problem with implementing submenus in AWT.

  • Having problems with submenus displaying on MenuBar

    I've been inserted the MenuBar several times and have no problem with the main menus, but the submenus will not display.  They show up in the property box, but not on the page.  Any ideas?

    Thank you for posting the link, this saves us a lot of time.
    When I try to find
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    or
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    I get an Error 404-Not Found message.
    This simply means that you have either not uploaded the files or uploaded them to the wrong ditectory.
    Gramps

  • Java 3D a problem with switching appearances

    I'm writing an application which allows to change primitive objects' ( sphere, box and cone- objects are changed with JComboBox) properties via user interface. It has a few panels each for different attributes group ( on the basis of Appearance class ). There is one main appearance which attributes are adjusted in the user interface, there are also three default appearances, one for each object. When I want to change the appearance of some object I just apply the main appearance to the desired object and change the values of attributes. And there's my problem. When I switch between the objects the main appearance is applied to each of them and so are the changes made after the switching. I tried to fix it in some ways.
    1. I tried going back to the default appearance after changing another object. For instance.. I chose sphere and operated on it.. then I switch to cone so I change sphere appearance back to its default and apply the main appearance to cone. But it obviously didn't work as I want to keep changes made on every object ( here: sphere).
    2. I tried to put the values of main appearance in the default sphere's appearance:
    sphereAppearance = mainAppearance;
    sphere.setAppearance(sphereAppearance); // previously the mainAppearance was set
    But it also didn't work. The changes are made on every choosen object.
    3. I also tried to apply attributes of the main appearance to the default appearance of the object:
    boxAppearance.setPointAttributes(mainAppearance.getPointAttributes());
         boxAppearance.setLineAttributes(mainAppearance.getLineAttributes());
    But it turned out that getPointAttributes() and getLineAttributes() and so on return the object of current Point, Line..... Attributes object which were defined:
    PointAttributes pointAttributes = new PointAttributes();
         LineAttributes lineAttributes = new LineAttributes();
    and attached to te mainAppearance:
    mainAppearance.setLineAttributes(lineAttributes);
    mainAppearance.setPointAttributes(pointAttributes);
    So it also ended in changes being made on every choosen object (and i wanted to change only one ).
    If you have any idea how to make a copy of mainAppearance that won't be affected by changes made on
    mainAppearance please help me ;)

    ac09
    Please do not request off-forum communication by email. Discussions may be kept on the forum.
    I'm blocking your post.
    db
    ac09 wrote:
    dear friend...
    Most probably YOU HAVE NOT DECLARED THE CLASS AS PUBLIC if rest are right...
    So make it....
    & there is nothing like brand new....
    contact : [email address removed]

  • Problem with switching appearances

    I'm writing an application which allows to change primitive objects' ( sphere, box and cone- objects are changed with JComboBox) properties via user interface. It has a few panels each for different attributes group ( on the basis of Appearance class ). There is one main appearance which attributes are adjusted in the user interface, there are also three default appearances, one for each object. When I want to change the appearance of some object I just apply the main appearance to the desired object and change the values of attributes. And there's my problem. When I switch between the objects the main appearance is applied to each of them and so are the changes made after the switching. I tried to fix it in some ways.
    1. I tried going back to the default appearance after changing another object. For instance.. I chose sphere and operated on it.. then I switch to cone so I change sphere appearance back to its default and apply the main appearance to cone. But it obviously didn't work as I want to keep changes made on every object ( here: sphere).
    2. I tried to put the values of main appearance in the default sphere's appearance:
    sphereAppearance = mainAppearance;
    sphere.setAppearance(sphereAppearance); // previously the mainAppearance was set
    But it also didn't work. The changes are made on every choosen object.
    3. I also tried to apply attributes of the main appearance to the default appearance of the object:
    boxAppearance.setPointAttributes(mainAppearance.getPointAttributes());
    boxAppearance.setLineAttributes(mainAppearance.getLineAttributes());
    But it turned out that getPointAttributes() and getLineAttributes() and so on return the object of current Point, Line..... Attributes object which were defined:
    PointAttributes pointAttributes = new PointAttributes();
    LineAttributes lineAttributes = new LineAttributes();
    and attached to te mainAppearance:
    mainAppearance.setLineAttributes(lineAttributes);
    mainAppearance.setPointAttributes(pointAttributes);
    So it also ended in changes being made on every choosen object (and i wanted to change only one ).
    If you have any idea how to make a copy of mainAppearance that won't be affected by changes made on
    mainAppearance please help me ;)

    Hi @Unbuff ,
    Welcome to the HP Forums!
    It is a terrific place to find answers.
    For you to have the best experience in the HP forum I would like to direct your attention to the HP Forums Guide Learn How to Post and More
    I understand you are unable to select the headphones as the default device and therefore the sound in Skype is coming through the speakers.
    Have  you ran the   HP Support Assistant   to help with HP updates and resolving issues?
    If you connect your headphones to another PC do they work and get recognized correctly?
    When you have your headphones connected is there an error on them in Device Manager?
    To assist you I will need some information. What exact HP notebook do you have?
    How Do I Find My Model Number or Product Number?
    What Operating System are you running?
    Sparkles1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom right to say “Thanks” for helping!

  • Problem with Window appearance

    I have builted my application in windows 7. I maded some front panel decorations also with help of rectangular boxs
    its running correctly in windows 7 . But when i runned the same builted application in windows ( Xp 2 ) the front panel
    objects like rectangular boxes are getting left shifted . 
    What might be the problem

    I only see one picture, so I don't see a "before" and "after" pair to see the difference. Are you talking about a font issue? The fonts between Windows 7 and XP are different. This is a known issue (search the forum and you will see this issue with fonts has been asked many times), and it's an operating system issue, not a LabVIEW issue.If you use "Application Font" or "System Font", the text will look different between the two operating system. Select a font by name explicitly on a user interface panel.
    If it's not a font issue, have you checked that the DPI settings are the same between the two computers? Sometimes people change the DPI settings to make things bigger on the screen.

  • HT1535 Problem with books appearing on another ipad

    I have bought some books from the store, and they appear on my wife's pad, we have different Apple id's!
    The only thing in common is that we have set the same credit card for both accounts Does anyone know how this could happen?
    This is only a minor inconvenience for us, but could be really important if say the second pad was used by a child and the books appearing had innappropriate content for that age.

    You have probably not signed into your iTunes account on the iPad yet. Are there iBooks books? Sign into your iTunes account on the iPad by going to the settings app and select store and set your iTunes account. You should make sure you are up to date on your version of iOS too by connecting to a computer with iTunes.

  • IPhoto problem with ! Appearing

    I recently uploaded a series of pictures to my IPhoto 08 but whenever I double click to view a vertical picture I get the ! instead. The horizontal and prior uploaded vertical picture have no problem. This has never happened before & I haven't altered the pictures in any way. I uploaded them from my scandisk card into the printer as usual and into the Iphoto page

    Hi Joey
    The "!" means that iPhoto can't find the photo or the connection between iPhoto and the Library has been severed. Try reinstalling the photos that give you the !. Or try rebuilding the database. Hold down the apple and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    Good luck.

  • Adobe X1 problem with non appearing license agreement

    Help, am in UK,  can't be specific as not too computer literate  but I got a new IMac and downloaded latest free versions of Adobe Reader X1 and Flash Player X1 as one does, successfully I believe to all intents and purposes.  Anyway when doing some work on new Government software site it crashed when I tried to print and said something like Access to Adobe browser denied as I hadn't agreed license agreement or something like that.  I've always downloaded latest versions previously onto my old Macbook and never had this message come up, and when downloading onto the IMac and Macbook I'm sure Acrobat loader wouldn't ever let me do this unless I didn't agree to all the terms and conditions.  Does anyone have a clue about this.  Sorry can't be more specific as the lady in Apple where I went to try and sort it first of all just pressed OK to the warning and we proceeded regardless before failing again, but I'm sure this is at the root of the continuing file problem.  Am I correct in my thinking and how can I agree to something I can't get at now, if it ever existed in the first place?

    You need to open Adobe Reader once by itself (not in a web browser), then accept the license agreement.

  • Problems with shortcuts appearing in trash

    The problem I'm experiencing is that when I download anything I hear the trash can noise and it changes to full. When I open the trash can I notice that there are shortcut copies of Macintosh HD & Network. This also happens whenever I move something even just moving a desktop icon. Does anyone know what may be causing this. I've scanned for viruses - none found/ I ran System Optemizer X - didn't fix it.

    Hello Pontus,
    maybe you are using the incorrect file/path separator. Check SAP Note <a href="http://service.sap.com/sap/support/notes/1266211">1266211[</a> on how to get the correct separator.
    Regards,
    Marc
    SAP NetWeaver RIG

  • Problems with flash appearing

    I am trying my best to add a flash movie to my web page in
    dreamweaver cs3. It will not show up on the web page. The flash
    file was created for me and works fine on the cd it was created on.
    Whe I upload all files to the server. AND try to run the same page
    it shows up blank. When I try to insert the .flv file into the
    webpage all the javacode goes into my page. I double check the
    paths, then save the file. Still no flash movie shows up. I know
    there is flash on the server b/c there is another site that has a
    flash movie in it that works. HELP!

    Check to make sure all the supporting files uploaded. In
    particular, check
    for the Scripts folder and containing file.
    Nancy Gill
    Adobe Community Expert
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: Dreamweaver CS3: The Missing Manual,
    DMX 2004: The Complete Reference, DMX 2004: A Beginner's
    Guide
    Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "sdisinger" <[email protected]> wrote in
    message
    news:g57s6s$7qh$[email protected]..
    >
    > I am trying my best to add a flash movie to my web page
    in dreamweaver
    > cs3. It
    > will not show up on the web page. The flash file was
    created for me and
    > works
    > fine on the cd it was created on. Whe I upload all files
    to the server.
    > AND try
    > to run the same page it shows up blank. When I try to
    insert the .flv file
    > into
    > the webpage all the javacode goes into my page. I double
    check the paths,
    > then
    > save the file. Still no flash movie shows up. I know
    there is flash on the
    > server b/c there is another site that has a flash movie
    in it that
    > works.
    > HELP!
    >

  • Hello, I have a big problem with Firefox: Session Manager & Undo Closed Tab addons are not working, Sync Is not working. History is working. How to fix this?

    Firefox remembers history but doesn't remember closed tabs, sessions.
    It happened after updating Fox to v. 19.0.2 on one computer.
    In Firefox Options is set Use Custom Settings For History, everything is checked except Always Use Private Browsing Mode. So I am not in private browsing.
    When I press on Undo Closed Button nothing happens & in session manager Save Session Button is greyed out. I've tried installing other add-ons that can remember tabs. tried to disable/reinstall these 2 add-ons. Did't help. On my 2nd computer I have same add-ons, same settings and they are working normally. on 3rd computer undo closed tabs works also. How to fix this? I decided to ask before doing Firefox Reset...
    Sync is a separate problem. It works, but quite often it logs me out of Sync account. Then I can log in only using long recovery key and password (choosing option I don't have device with me because it does not accept keys for pairing device.)
    Thanks for reading.

    I have exactly the same settings in Options (in both computers)
    for history, these 2 add-ons and all other stuff in Options. The only difference is that on 1 pc sessions can be saved and closed tabs can be reopened, on other main pc they stopped to work. + no any other add-on that does similar things works on this pc.
    It is also interesting that I can reopen closed visited sites from History Panel, but not by pressing the Button. For now I only manually bookmark links to a temporary folder.
    Recently (some 2 month ago) I pressed x and Firefox closed all tabs without saving them without displaying save & quit pop up.
    so I changed 4 settings in about.config
    browser.tabs.warn on close true
    browser.warn on quit true
    browser.warn on restart true
    browser.show.quit warning true
    but the problem with sessions appeared only 1 week ago.
    So I guess the problem is not with the History settings or other settings. Seems that something responsible for button or for storing info about tabs/sessions got corrupted. :(

  • Problems with ASIO on multiple Audigy 2 ZS cards

    G'day,
    I've been using an Audigy 2ZS PCI for a couple of years now with great success. I convert old audio recordings to various digital formats using a couple of applications (mainly Adobe Audition 1.5 & 2.0).
    Recently, my workload has increased to the point where I needed one card to just record at high res, and another card to handle just playback and general Windows bells & whistles without impacting the performance of the recording.
    I installed a second 2ZS, it was detected by Windows, etc, and I set it up so Windows uses one card (identified as A800) for all its stuff, and the second card (B000) is used only for ASIO recording.
    That's where the nightmare started. I've uploaded and installed the May 2006 Creative driver update, but I still suffer from a number of problems, some related to Audition, some not.
    The least annoying problem is that all the Creative drivers seem to identify only a truncated version of the ID string. So for example, in various applications, I see "SB Audigy 2ZS [B0 -1" or "SB Audigy 2ZS [A8 -5". This is annoying but not showstopping.
    The biggest problem is getting applications to correctly interact with the Creative Labs ASIO driver and enumerator. Most applications (Nero, Audition, Premiere Pro) can "see" the ASIO driver, but when it's selected, it may not work at all, or may work from one or the other sound card, without any clear indication of which card is selected.
    I'm sorry if this sounds generic, but I've spent a week with the Adobe folks, who simply ended up telling me "it's a problem with the CL drivers", and most forums I frequent say the same thing, and the specifics vary from application to application, but at the core, CL drivers are just not working properly with the system when two cards are installed.
    By way of example, using ASIO4ALL has fixed many of the card selection problems, but even there, sometimes the inputs of one card are disabled, sometimes the other card, and in the middle of a recording session (line in jack, 44.1k/16 bit), the input waveform slowly biases down to -2V and then all I get are inverted samples - quiet appears as max. value samples, while valid audio appears as -2V samples! If I put the audio line into the other card, it plays just fine (I know what I'm doing WRT grounding and line levels, etc).
    This system has run essentially non-stop since September 2005, and I guess it collected a lot of software crud, so I bit the bullet and performed a clean reinstall of Windows XP and updated every driver I could. Some problems have since changed for the better (i.e. clicking on the configure button of the CL ASIO driver no longer bluescreens or displays an empty window), but the problems described above still happen all the time.
    I was wondering if other users have seen the same or similar problems, and if so, what has worked for you?
    The system is a Gigabyte 81PE1000Pro2, PCI bus, 3.2GHz P4 with HT enabled, 2G physical RAM, and a 1.5Tb RAID disk system.
    Recording when a single sound card (either of the cards works beautifully on its own) is perfect; just when both cards are installed, everything gets confused! Even the WDM drivers don't correctly identify or manage the routing of inputs and outputs reliably.
    Sorry to go on about this. If anyone can offer constructive suggestions (I define "constructive" as not telling me to "buy another type of card" or (as one poor soul suggested) telling me that multiple PCI sound cards are not supported under Windows), I would be most grateful.
    Thanks and regards,
    Peter

    G'day Jutapa, thanks for looking at this!
    Yeah, I got all the possible ASIO drivers listed, one CL ASIO driver is listed for each card, and I have spent much time trying different configurations of card order, I/O port order, direct sound enabling/disabling, timesync enable/disable, etc.
    The problem for me with the CL ASIO drivers is that it limits me to 48/96k sampling only. That is not acceptable, because I need to sample at 44.1k for "straight" conversions to CD, or 192k/24-bit for archival purposes (used for extremely old or fragile recordings), so I end up with large files that nearly always need to be resampled to 44.1k, or saved permanently at 192k/24-bit. Typical filesize is 650Mb, largest so far is 5.66Gb - so that's an awful lot of time spent downsampling or pointless upsampling. I'm starting to think that the problems I'm experiencing may be due to sampling at "non-native" ASIO or WDM rates. I haven't tried sampling at 48/96k to see if that "fixes" the problem...
    Using the WDM wrapper drivers (I don't know if these are provided - or supported! - by Creative or Adobe) results in randomly disabling one or the other Audigy. At that point, the only way to recover functionality for the disabled card is to reboot. Sometimes only the inputs are disabled, sometimes only the outputs, sometimes both. There is no pattern that I can see or duplicate.
    Both cards appear to work fine under Windows. I can define either card as the default recording or playback device, and I can define one card as the default recording and the other as the default playback, any combination works fine. However, any application that uses WDM drivers to access the cards also get confused when a card's inputs suddenly become disabled! This does not appear to happen when Windows is the only application using the cards.
    Specifying "use preferred devices" in Windows does disable the non-selected card (or card input or output if I specify different cards for input and output) in other applications.
    The problems are much worse when I try to use any ASIO drivers to access the cards. This problem with ASIO appears regardless of the application I use.
    I have installed ASIO4ALL, and it finds and configures the cards without any problems in ALL applications - but if I'm recording (with no other applications or drivers or tray applications loaded or active), when I stop recording and restart, the input I was just recording from appears disabled! If I open the ASIO4ALL configuration window, one or both Audigy cards will have their inputs disabled, or both inputs AND outputs disabled. This doesn't happen all the time, and my workaround is not to stop recording once I've started. Not a good workaround! I do realise that ASIO4ALL does fiddle around with the sample rates in the background, but at least when it works, I get a single clean sample without having to do all the resource-intensive resampling later. Maybe it's 6 of one, 1/2 dozen of the other...
    I understand and appreciate that perhaps CL never intended to provide software functionality for more than one Audigy on any given PCI bus/bridge. I just don't get why the drivers appear to work natively under Windows (I'm assuming that Windows just uses WDM access) but not with any other applications.
    I will try and do some testing with "native" ASIO sample rates (i.e. 48/96k) and see if that fixes some or all of the problems. My concern here is really that my expectation is that the drivers, once identified and enabled, should not suddenly disable themselves in all applications (by whatever mechanism), regardless of what sample rates are specified. But maybe that's too much to expect.
    BTW, this happens with any combination of 2 of my 3 Audigy 2ZS cards, each of which works perfectly on its own with ASIO and WDM drivers. So it's definitely a multiple card issue.
    The workaround that has been suggested is to purchase a different vendor's card : but there are so few cards that I can use to sample at the resolutions I require, and they are all so bloody expensive, that's why I've committed so much to CL Audigy 2ZS.
    I'll get back to you once I've tried a few days working at the "standard" ASIO sample rates. Thanks again for taking the time with this stupid and unusual problem!
    Kind regards,
    Peter

  • File sharing problems with T500 and T410 and a desktop all running XP Pro SP3

    Others have had similar problems with what appears to be an overriding of Windows file sharing by Access Connections.
    My three computers, printers and internet modem are networked and working fine both wired and wirelessly except that while the desktop computer in network places can "see" shared folders on the Thinkpads, access to them is denied. Access to desktop shared folders from the Thinkpads works fine.
    All the usual sharing settings have been checked and verified by Microsoft support; it does not so far have a solution.
    Could this issue please be addressed more thoroughly and/or suitable documentation referenced? I have read the blurb about Access Connections but can't make a lot of sense of it.
    Thanks

    When you use the Desktop top menu bar Go/Connect to Server and enter
    smb://nameofPC
    what happens ?

Maybe you are looking for

  • Wrong balance carried forward...

    Hi Issue: We have Jan-Dec Fiscal year, however one of our resource wrongly ran the Balance carry Forward program for FY 2013, due to which the balances are carried forward to 2013 year. The consequences is GLT0 was updated with 2013 entries which was

  • Read content of MR27V3202F µC

    Hello, I have an OKI Semiconductor µC "MR27V3202F" with unknown content. Is there a easy way to read the complete content of this µC, as possible with LabView? The elected content should be written to a new µC, "AMIC A29L320A". Is this also possible

  • JHeadstart and ADF Faces

    Oracle annunce EA for ADF Faces. Would new version of JHeadstart use it or stay aligned with JSP and full UIX support?

  • Authentication in Cloud Services

    Hi, I could not find good documentation on authentication for Cloud Services. I have a cloud service which I want to give access to just my organization. How do I achieve this? Thanks

  • IPhoto has been opening with latest import for a while

    Since before the updated system when i open iPhoto it always goes to the last import tab, thought upgrading to Mavericks would solve the issue but it hasn't and i can find any options anywhere to reset program. How can i get rid of this issue?