Strange OS X Menu Bar bug

Hi,
Does anybody ever seen this? Is there an explanation?
Thanks

Hi, I'm not sure exactly what features you're referring to, but I know that ever since the 10.6.4 update, every time I do a restart, my screen shows only the icons that belong on the right side of the menu bar. The menu bar itself is not there--far more alarming, though, is that the apple that should appear in the far left corner (the one I need to restart, shut down, do software update checks, etc.) is completely missing, along with the words Finder, File, Edit, View, Go, Window, Help (just like your machine in your picture). In other words, the whole Finder. These items appear to be missing from your menu bar as well, so I'm guessing that your problem is the same as mine.
Looking through the topics in this discussion area, we are not the only ones experiencing this problem. The first time this happened (when the computer restarted following the update), I waited forever, thinking that things were happening inside and that eventually the Finder and the menu bar would show up. Normally, if something that affected the whole machine happened, I would do a restart. Since I couldn't do that (without shutting it down by using the on/off button next to the keyboard), I just clicked on an application in my Dock, and suddenly the Finder and the menu bar appeared. Have you tried this to see if the rest of your menu bar appears?
This is pretty scary and began IMMEDIATELY after the update. Has any one else found this or does anyone have a solution? Please use small words--I am most definitely not familiar with the files, etc., that make my Mac go (no clue about utilities, etc.).

Similar Messages

  • Strange Character in Menu Bar

    My friend called me with a strange problem on his Mac Mini. He said today when he restarted his Mac all this desktop icons and menu bars have been change. Instead of the normal menus such as File, Edit, View etc... He now sees a bunch of "A" with square boxes around them. I had him repair disk permissions, reset PRAM. I also took him into the international system pref to see if his default language and Input menu had been changed away from English/US. Those all checked out as normal. I had him send me a screen shot of what he's seeing. I've posted it here: http://members.cox.net/bdm12071980/icons.jpg
    Any help would be most appreciated. Thanks!
    17" PowerBook G4 1.67 GHz Mac OS X (10.4.5)
    17" PowerBook G4 1.67 GHz   Mac OS X (10.4.5)  

    Hi
    I'd guess that your friend has done something to one or more of the system fonts.
    the following link may help
    http://discussions.apple.com/thread.jspa?messageID=607630

  • Spry Menu Bar Bug in IE10

    Hi guys! 
    I have spent ours looking for an answer to my question in this forum and elsewhere, but to not bore you: Website works fine, but the Submenu (below "Locomotives") pops up way too low in IE. I tried a few things but ended up discarding changes.
    I hope you may be able to find the error!
    Thank you in advance!   
    Website:
    http://centurius.de/html/engl/WWA_engl.html
    Code:
    ul.MenuBarHorizontal
              margin: 0 auto;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              cursor: default;
              width: 800px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              margin: 0 auto;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              position: relative;
              text-align: center;
              cursor: pointer;
              width: 130px;
              float: left;
              white-space: nowrap;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 12em;
              position: absolute;
              left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: auto;
      margin: 5% 0 0 0%;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 12em;
              text-align:left;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: relative;
              margin: -5% 0 0 100%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
              border: 1px solid #EFC39C;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: #d8dffc;
              padding: 0px 0.75em;
              color: #055CA8;
              text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              background-color: #33C;
              color: #055CA8;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color: #EFC39C;
              color: #055CA8;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
              ul.MenuBarHorizontal li.MenuBarItemIE
                        display: inline;
                        f\loat: left;
                        background: #FFF;
    Nachricht geändert durch bryankook

    Hi All
    I have a related issue with Spry sub-menu and IE10.  The sub-menu instead of showing directly below the main navigation only show and coninues across the screen - see screen grab below.
    The navigation shows fine in Firefox, Safari, Chrome, Opera and older versions of IE.  It seems that IE10 is the only problem browser.  Can anyone point me in the right direction to fix this issue.
    Many thanks.
    See link www.havering-sfc.ac.uk/web/home.cfm
    This is the .css code
    @charset "UTF-8";
    ul.MenuBarHorizontal
              margin: 0;
              padding: 0;
              opacity:80%;
              list-style-type: none;
              font-size: 93%;
              cursor: default;
              /*width: auto !important;*/
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              /*display:inline-block;*/
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 92%;
              opacity:80%;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 20%;
              float: left;
              font-family:Century Gothic, Arial, Helvetica, sans-serif;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              display:block;
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              opacity:80%;
              z-index: 1020;
              cursor: default;
              width:inherit;
              position:absolute;
              left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: auto;
              background-color:#999;
              opacity:80%;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 100% !important;
    background-color:#999;
    opacity:80%;
    padding:5px 0;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: absolute;
              margin: 0 5% 2% 99%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
              /*border: 1px solid #CCC;*/
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
    /*          background-color:#F3551F;*/
              padding: 0.4em 0.75em;
              color: #FFF;
              opacity:80%;
              text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              background-color:#FC0;
              color: #FFF;
              opacity:80%;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color:#F90;
              color: #FFF;
              opacity:80%;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarDown.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarRight.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarDownHover.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarRightHover.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    Jill Hughes

  • Menu bar bugs

    I'm trying to use the menu bar widget but of course it
    doesn't look how I want so I began styling it using the stylesheet
    it comes with.
    My problem is that when I try and change the width on the
    ul.MenuBarHorizontal li tag to auto it gives me a weird box behind
    my sub menus with a value of false inside but if I give it an
    explicit value it behaves correctly.
    here's the sample page:
    http://www.wusf.usf.edu/Includes/Nav_css_test.cfm
    this bug is in the IE7 browser.
    However when I go over to Firefox this is not present but my
    a:hover and a:focus colors are not showing up when I run my mouse
    over the text. (text should be a dark red color #904903 when the
    mouse is over the text)
    Can anyone help?

    Just a quick pointer that I did get to a solution with my
    issue which seems to have been identical to yours. Details here:
    Click
    Here

  • Strange: Mac screen menu-bar requires max-heap-size to be set.

    I planned to omit the max-heap-size attribute in the line of my jnlp file
    <j2se version="1.6+" max-heap-size="256m" />
    The idea was that with Java 1.6 the heap size is set automatically
    according to the client's RAM.
    Unfortunately, the Macintosh screen menu-bar works if and only if the max-heap-size attribute is present.
    It is a MacOsX=1.4 with Java1.5.
    Strange, since the Mac runs Java 1.5 and I am talking about settings for 1.6.
    The jnlp passed ValidateJNLP at http://mindprod.com/jgloss/jnlp.html#VALIDATION
    Here is another post stating that attributes in JNLP have side effects on Mac's screen menu-bar:
    http://lists.apple.com/archives/Java-dev/2008/Jul/msg00122.html
    Here is my jnlp:
    w3m -dump http://www.bioinformatics.org/strap/strap.jnlp
    Is there an explanation for this?
    Christoph

    user10289576 wrote:
    I would not blame Macintosh.
    The error might still be in the Sun's code.Could be. But to fix the Mac VM it would require the following.
    1. Find it in the Sun VM.
    2. Fix it in the Sun VM.
    3. Move the changes to the Mac VM...somehow.
    >
    If the jdk would be smaller, less redundant and clearer, then
    open JDK could be possibly compiled on a Mac.
    Not sure what that means since there are likely OS level calls that must be implemented in some place in the API. Which are specific to Mac.
    Just as there are differences between windows/solaris/linux which Sun accounted for.
    And that would be what Apple would have done to make it work on Mac. And what someone (someone who likes Mac) will need to continue to do with the public release (explusion?) which is the form that Java will have going forward.
    The main thing that should be improved on a Macintosh
    is to directly allow for Linux and Solaris executables such that the Linux JDK could directly work on a Mac.The main thing, again, is the Apple is no longer supporting Java on the Mac.
    And Apple, not Sun and certainly not Oracle, were the ones that created the Java VM.
    So the main thing at this point is that ALL future directions that Java take are dependent not on Apple but on the Macintosh community. That includes features as well as fixes.

  • Creative Cloud Menu Bar Bug (Mountain Lion)

    I see this everytime I use Mission Control when CC's menubar item is running. Could we hope for a fix in the next update?

    I'm glad I found this thread, because it helped me decide never to give Adobe another penny for their sloppy, user-hostile software and extortionate business practises. I was about to make the mistake of installing Creative Cloud, but within 10 minutes it became crystal clear that no-one – NO-ONE – at Adobe gives a flying fig for the user experience or even bothers to think about what a customer's first impression of the software might be.
    First off, while trying to install After Effects, I was greeted with the insane "Please close AdobeCrashDaemon to continue" message loop. Have you muppets ever tried actually installing your own software?? This problem has been around since CS2, at least. Who operates like this and thinks it's Ok?
    Then I discover the issue reported by tzeruk below, where the Creative Cloud menu bar item bounces you back to whichever Desktop space you were in when it was first launched. This remains unfixed for over 3 months. In truth, it's probably been there since the very beginning.
    All of this before I've even got to use the actual application I was downloading.
    As others have said, once it gets customers signed up to providing a regular income stream, Adobe has a vastly reduced incentive to provide bug fixes, and it was never very good at it in the first place - Adobe is still the only major software company I know of to release a major new version of an Application (Adobe GoLive) without providing any bug fixes or improvements to the previous version.
    Adobe has justified the move to Creative Cloud as a way to combat piracy, but the fact is there will always be a certain level of piracy. To avoid mass-market piracy you just have to provide good software at a reasonable price. Adobe has proved themselves institutionally incapable of doing this.

  • Translucent Menu Bar Bug

    This is an annoying interface glitch. The desktop & screen Saver system preference has the option "Translucent menu bar". I've got this option switched off, so the menu bar is now opaque. When I switch applications the menu bar sometimes flicks back to translucent for the duration of the switchover to the selected application. It's as if the system always defaults to translucent when it's rebuilding the target application's menu bar. If there's any delay in fetching the data it needs then I'll be treated to 2 or 3 seconds of translucent menu bar while it gets its act together.

    I didn't delete Preferences/com.apple.systemuiserver,plist.
    I've just rebooted and the problem seems, so far, to have disappeared. It's a very clean/new install of Lion I've got so I'm surprised that it's playing up already.
    Thanks again. Kevin.

  • Strange! JDev Menu Bar Disappears

    Hello,
    Has anyone experienced wierd behavior with jdev (either 10g or 9) - where the graphical menu bars disappear? I still see the file menu, but the other menus are gone.
    --Bill                                                                                                                                                                                                                                                                                                                                                                                    

    I just thought I'd update this thread for future generations who may run into this problem. It took filing a TAR with Oracle to finally get an answer. It seems that the ide.properties file in the {install_dir}\jdev\system9.0.5.2.1618 directory sometimes becomes corrupt if JDeveloper fails to exit properly. If you delete this directory, the next time you start JDev, it will rebuild this directory. Unfortunately, you'll lose all of your previous settings for connections and window layouts. You can migrate from a previous version to help this somewhat. I've made a backup copy of my properties file in case this happens again.
    Hope this helps,
    Mark Brown

  • Yosemite: Menu Bar bug?

    Hi,
    I get the menu bar hidden suddenly, once I hover the cursor near it it get displayed then it disappear. Any idea how to fix this?
    Thanks.

    Reinstalling OS X Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Reinstalling OS X Without Erasing the Drive
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility and press the Continue button. After Disk Utility loads select the Macintosh HD entry from the the left side list.  Click on the First Aid tab, then click on the Repair Disk button. If Disk Utility reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit Disk Utility and return to the main menu.
    Reinstall OS X: Select Reinstall OS X and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    Alternatively, see:
    Reinstall OS X Without Erasing the Drive
    Choose the version you have installed now:
    OS X Yosemite- Reinstall OS X
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • PA10 / SAPMP50A menu bar bug

    Hi All,
    We recently upgraded our HR service pack to level 85, now when executing PA10 transaction under the 'HR master data' tab menu function does not navigate to its specified transaction code (maintain = pa30, display = pa20, etc.. ) it just goes back to SAP easy access without displaying anything.
    Anyone encountered this problem before?
    Thanks.

    no icons are added to my menu bar that aren't from sys prefs. I find that it happens most when switching between firefox and ichat. I use the latest versions of all software.
    Also, its not that the menu bar changes to translucent, it goes completely transparent except for the writing / icons. Its quite odd.

  • PS CS5 MENU BAR BUG

    just installed CS5 today on Windows Vista 64 bit platform and the 32 bit version has two menu bars. as soon as the program opens there is a second menu bar which only goes away if i minimize and then maximize the window again. any ideas what may be causing this?

    Try uninstalling all your 3rd party plug-ins

  • Menu Bar Bug

    Just wondering if anyone else noticed that sometimes the menu bar goes transparent when clicking between open applications. I have the menu bar set in system preferences to be non-translucent. The problem immediately resolves itself when i click on any other window from any other application. Its just something that catches my eye when i'm using OSX and thought it should be looked into.

    no icons are added to my menu bar that aren't from sys prefs. I find that it happens most when switching between firefox and ichat. I use the latest versions of all software.
    Also, its not that the menu bar changes to translucent, it goes completely transparent except for the writing / icons. Its quite odd.

  • Status Menus in the Menu Bar Behaving Chaotically

    I have an annoying issue where the icons in my menu bar at the top right are staying highlighted (several at a time if I try moving through them) and their pull down menus can be difficult to reach.
    Just filed it as Bug ID# 6595221 at Apple's Bug Reporter. Details follow:
    17-Feb-2009 12:17 PM John Muir:
    Summary:
    Menu bar icons remain highlighted – several at a time – and using their menus becomes difficult as the system is unclear whether they're pulled down or not. I've included a couple of screenshots.
    Steps to Reproduce:
    Clicking on any menu bar item leaves persistent highlights, and appearing / disappearing pull down menus which are a fight to use.
    Expected Results:
    Ordinary functionality where a menu bar icon is only highlighted when you click on it and are using its pull down menu.
    Regression:
    This started happening after I installed 10.5.0 from my original retail disc and ran the 10.5.6 combo update. After installing my 3rd party software (specifically Adobe CS 3 Design Premium), the error suddenly manifested itself. I wiped my PowerBook and tried again: same result. May well have something to do with installing CS3. Click on any menu icons up there and it's chaos.
    Notes:
    This line keeps popping up in system.log in Console.
    *Feb 17 20:05:15 Johns-PowerBook SystemUIServer[102]: * -[NSCFString rangeOfString:options:range:locale:]: nil argument*
    Also included are some screenshots and the system.log file.
    'Menu Bar Bug.zip' and 'Johns-PowerBook.spx' were successfully uploaded

    John, I see no reproduction of your problem on any of my four system, so based on what you've described I would conclude the problem was your upgrade from 10.5 to 10.5.6. I would presume the original system was in some way defective and/or you did not repair the HD and permissions prior to the upgrade. If I were you I'd consider the following:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Remove name from menu bar + possible bugs?

    Hello, I was wondering if it were possible to remove my name from the Menu bar. It currently says my full name and is clickable, dropping down to my icon and a link to the Login Window and Users & Groups Preferences (but there's no option to remove it in these preferences!) Thanks!
    Also, Is there a thread where we can post bugs we come across? Becuase I've found a couple.
    I'll post them here for now:
    1) When I go into Finder > Preferences, the menu box flickers strangely when I switch between the option tabs (General, Labels, Sidebar, Advanced).
    2) Scrolling left and right through folders in the Column view is hesitant. It doesn't flow smoothly like it does when I scroll up and down.
    If there's anywhere I can report these bugs, please let me know!

    name from menu bar:
    the easy way: hold command and then drag the name icon out of the menu bar (just like how you remove stuff from the dock with the difference of pressing command while you do it).
    the less easy way: open system prfs -> Users and groups [press locket if locked] then click login options and uncheck fast user switching menu

  • Bugs in Spry 1.6.1 menu bar widget affect performance in IE6

    The Spry 1.6.1 menu bar widget has bugs that result in the showSubmenu and hideSubmenu methods being called more times than necessary.  This is especially noticable in IE6 because multiple iframes are then created and deleted on every menu bar mouseover event, which makes the menu bar display slow and jerky.
    Two of the bugs are incorrect references when checking whether a submenu is visible before calling showSubmenu/hideSubmenu, and the other three are places that I think also need checks for whether a submenu is visible before calling hideSubmenu.
    I've attached a "SpryMenuBar-fixed.js" file that fixes those bugs.  All changes are marked with "BUG FIX", and I left the previous code commented out for reference.

    I have systematically reviewed the tutorial of David Powers on the Spry Menu bar 2.0, and recreated the process in a methodical process - making one change at a time, and then checking each step on a cross browser testing server, and have found, quite to my amazement that what seems to be causing the problem of the "gap" in IE 6 is by removing the customized styles from the head of the individual pages, and placing them in CSS stylesheet that governs the entire site.
    I find this quite inexplicable.  When the customized CSS rules governing the menu bar are situated in a separate stylesheet, the page renders well enough for any of the "modern" browsers, but won't render in IE 6.  All that I get is a horizontal menu with drop downs, but none of the styling (specifically background colours, background images, etc.) that are called for in the stylesheet and that otherwise appear when rendered by other browsers.
    I realize that this sounds strange, but I was wondering if anyone had experienced this phenomenon, or could offer any explanation.
    Any suggestions would be greatly appreciated.
    Steve Webster

Maybe you are looking for

  • Mapping Document date to PO date during MASS Transaction

    Hi ABAP Experts, I have a quick question. I want to change existing Sales order header data. I think we can do it using MASS transaction. Right now we don't have any data in the PO date field. Now I want to fill this field using document date. I went

  • Compatible with Mac based Word

    I am wanting to download the Pages app for my iPad but I would like to know if my Pages documents would be compatible with my Microsoft Word for Mac that I have on my iMac? If I complete a document in Pages on my iPad, then email it to my Gmail accou

  • Mirroring Disconnected and in recovery

    Hi experts, we have mirroring setup, in which principal was restarted as a result mirroring was disconnected and in recovery, and the DR server went to OFFLINE. Now, the error log says " Database mirroring connection error 2 'Connection attempt faile

  • Change Sale order range number

    Hi,   I have implemented the number range selection in user exit MV45AFZZ for sale order.  Is there any BADI available which provide the same capability as MV45AFZZ ?? Regards, Kit

  • Accessing Itunes account from a new computer

    My computer has crashed, so I cannot access my itunes. How can I access it from another computer?