My Left Command key shows the desktop and can't be used for other functions

My Left Command key shows the desktop when pressed in.
So if I try and copy (command + C) I end up staring at the desktop....This only happens with the left key. When checking System Preferences, none of the settings in keyboard preferences seems to be relevant. I have reset the keyboard setting to default, but it makes no difference. Also this only happens with my user, when changing user on same laptop I get the normal behaviour for the Left command key
I am using a Macbook Pro i7 (2011) Yosemite and am upto date with all software

Try a restart.
Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
Isolating an issue by using another user account
Try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear and again when you log in. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don’t do them all at once.
Safe Mode - About
Safe Mode - Yosemite

Similar Messages

  • For some reason the function keys on my mac book changed, I restored them and now the shift keys have the function of showing the desktop and all windows.  I there a way I can restore the original function?

    For some reason the function keys on my mac book changed, I restored them and now the shift keys have the function of showing the desktop and all windows.
    I there a way I can restore the original function?

    You do not tell us what OS version you have. In OS 10.8.2, do this:
    Apple Menu / System Preferences / Language and Text / Input Sources.
    Select the language you want. Mine is set to Canadian English.

  • I have a FreeAgent Goflex drive (for Mac) after a while the icon disappears from the desktop and can only be restored by reconnecting

    I have a FreeAgent GoFlex backup drive (for Mac) after a while the icon disappears from the desktop and can only be restored by reconnecting the firewire. This also happens when I use the USB connection as well. Thanks

    Did you use any of the "sleep" drivers supplied? I have found it best to just totally reformat/erase the drives and let the OS handle them.

  • What is the AlwaysFilter and when it is used for?

    What is the AlwaysFilter and when it is used for?
    Could you explain it in the details.
    Thank you

    jetq wrote:
    Sorry.
    cache.aggregate(AlwaysFilter.INSTANCE, new LongMin("getAge"))
    That doesn't really help.
    Where does AlwaysFilter come from? Is it part of the core API, or a 3rd party library? If the latter, which one? And in what do the API docs for this class not answer your question?

  • HT4718 My copy of Lion is damaged and can't be used for reinstallation, what can i do?

    when I launch Lion Recovery and try to reinstall the OS, there is a message that says that my copy of lion is damaged and can't be used for reinstallation. what can I do?

    Sorry but that makes no sense.
    The Lion install files are not stored on your computer so they can't be damaged. When using the Lion Recovery HD and you want to Re-Install Lion the install files are downloaded from the internet before the actual install begins.
    If at one time you saved the Lion install files, secifically the InstallESD.DMG, and created your own Lion Install USB thumb drive and that is what you are booting from then this same type of thing has happened to me.
    If you can't boot to the current Lion install, or you wiped your hard drive, you can try booting to the included Recovery HD and then download and install Lion or try the Online Internet Recovery HD system by holding down the Command+r keys OR the Command+Option+r keys when starting the system. One of those keyboard combos will take you to the online Lion Recovery system where you can download and install Lion.

  • DataTrigger : can it be used for other pl/sql code than before and after?

    Hi,
    I was wondering whether the <dataTrigger ...../> can also be used for other PL/SQL code than just using it for the beforeReport, afterReport and stuf.
    Just now I placed a call to it in the datastructure, as last entry in a group (for headers f.i.), called it AfterHeaderTrigger, and called a function in a package.
    It didn't fail, but I dont think it excecuted it though.
    So, can you do that?
    thanks
    Ronny

    thanks, that's what I thought.
    It's a shame, it would have been so cool.
    thanks
    Ronny

  • How JFileChooser finds the Desktop and can browse CIFS(SMB) in windows.

    Hello.
    I'm currently using serveral methods from FileSystemView used by JFileChooser to detect if a File is a system root, a floppy, or to find the "My Documents" folder under windows.
    JFileChooser however is also able to provide a link to the desktop. How do I get that location from Java?
    Further more. JFileChooser is able to browse and use resources located on the network using CIFS(SMB). I've searched through JFileChoosers source. But I can't figure out how it does this.
    I'm currently writing a Folder synchronization app. As you can see in the screenshot ( http://users.telenet.be/greenhouse/Screenshot-7.png ) I'm trying to integrate the location browser (Look based on the GTK file browser) more into windows. I want my users to be able to browse CIFS just like in the JFileChooser. How do I do this?
    The reason I'm writing my own browser is because the GTK one provided in Java is more then lacking. And I can provide browsing for remote resources more easily (like SFTP and SCP)
    In short:
    *JFileChooser however is also able to provide a link to the desktop. How do I get that location from Java?
    *JFileChooser browses and uses CIFS in windows. How do I do this (without a 3th party library) the same way as JFileChooser does it?
    Message was edited by:
    finalbeta

    JFileChooser fr = new javax.swing.JFileChooser();
            FileSystemView fw=fr.getFileSystemView();
            defaultfolder = fw.getDefaultDirectory().getPath();
           String desktopfolder;
            if(System.getProperty("os.name").startsWith("Windows")){
                for(File tmp:fw.getRoots()){
                    dekstopfolder = tmp.getPath();
            }That piece of code gives the path to the desktop folder in Windows. In linux it returns root. (getRoots();) How horrible.
    I hope I'm going about this the wrong way. Because this would be an ugly Java API.

  • What are the algorithem and container to be used for this problem?

    Say I have a class with the following properties:
    groupMonth //String (jan,feb,mar�)
    accumulatedLasyYear //double
    accumulatedThisYear //double
    What will be the best container/algorithm to use for objects from the class above so I can have them sorted by month (I know it�s a string) AND GROUP the months together (and the accumulated as well)
    Example:
    Jan 4 8
    Feb 2 3
    Mar 5 2
    Jan 3 5
    Feb 4 2
    Mar 9 3
    The output should be:
    Jan 7 13 //(4+3, 8+5)
    Feb 6 5
    Mar 14 5
    Thanks for any thought�

    I'd suggest a java.util.Map<String, Set<WhateverClassYouveDefined>>. The keys are the year, the values are Sets containing all objects of that year. Iterate through your list of objects and group them into the right set using the map.
    Then I'd suggest looping through the keys to get each month's worth. Since you know what all the keys will be in advance, and there's only twelve of them, create an array of the twelve month strings. Loop through that array, and for each value grab the corresponding Set from the map.
    Then for each set you get, iterate through its contents, get the values, and add them.
    Then just print the month and the sums of values from the set, and go on to the next month.

  • I have a iPhone 4s from Verizon and clean esn but using for other carrier. How can I reset phone setting so I can get us contact setting? (My default contact setting is to Netherland.)

    My contact setting is default for Netherland and want to resync with *228 but because of I'm not active account holder with Verizon, they can't reset it for me.
    I bought it from other people and I checked the ESN , its clean one with no contract.
    What's my option now? Can apple unlock it? I want to use it for GSM carrier. 

    Only Verizon can authorize it to be unlocked.  If they won't, you'll have to sell it to someone who can use it.

  • How to use the substring and can i class method for the primitive type

    MY COMPILER
    public class StringLine
    public static void main(String[] args)
    String sentence;
    char letter;
    char name;
    int position;
    System.out.println("Enter a line of text. No punctuation please");
    sentence = MyIO.readLine();
    System.out.println("I have rephrase that line to read:");
    position = sentence.indexOf(" ");
    name = sentence.charAt(postion, position+ 1);
    name = name.toUpperCase();
    letter = sentence.charAt(0);
    letter = letter.toLowerCase();
    sentence = name + sentence.substring(position + 2)
              + letter + sentence.substring(1, position);
    //////////////// I got 3 errors following:
    StringLine.java:16: cannot resolve symbol
    symbol : variable postion
    location: class StringLine
    name = sentence.charAt(postion, position+ 1);
    ^
    StringLine.java:17: char cannot be dereferenced
    name = name.toUpperCase();
    ^
    StringLine.java:20: char cannot be dereferenced
    letter = letter.toLowerCase();
    ^
    3 errors
    }

    position = sentence.indexOf(" ");
    name = sentence.charAt(postion, position+ 1);
    name = name.toUpperCase(); two error here:
    1. as stated above postion is mispelled...should be position
    2. you cannot perform a chatAT(int, int)
    I think you want to perform a substring
    String name;  // should be a string instead of a char..(char is a primitive and all primitive have no method)
    position = sentence.indexOf(" ");  
    name = sentence.substring(position, position + 1).toUpperCase();
    [./code]
    better yet..you should check if the sentence does contain a spaceString name;
    position = sentence.indexOf(" "); // return a negative value if the search string is not part of the string
    if (position != -1)
    name = sentence.substring(position, position + 1).toUpperCase();
    else
    System.out.println("The sentence does not contain a space);
    [./code]
    String letter;
    letter = new String(sentence.charAt(0));
    letter = letter.toLowerCase();
    // or
    char letter;
    letter = sentence.toLowercase().charAt(0);

  • The URL bar can also be used for a search engine, but when I search something a page pops up reading "The URL is not valid."

    When I click on the URL bar it says to insert address or search, yet when I search it says the URL is not valid, which is obvious because I didn't put in a URL, I searched something. I never installed an add on or anything. It just quit working one time and hasn't worked since.

    Does it happen to all the search words or particular words?
    It may be a malware issue too.
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Left command key has broken off - how to replace?

    So a few days ago I caught my left command key with my nail and the top half of it lifted away from the mechanism underneath. I pressed it until I heard it click back into place and then merrily continued using my computer as usual. Today I was typing and the whole thing just came off under my thumb, which is annoying to say the least.
    The biggest issue is that as I was trying to reconnect key to mechanism, the little criss-cross doohickey came off as well! I am left with a little silicon nipple which, while titilating, is not really conducive to the kind of high volume typing I'm used to!
    I really don't want to pay 40 bucks to get Apple Support to replace a single key for me - I just need to know how to do it myself. It's only one key and I could probably learn to get used to using the right one, but it would be easier if I could just click it back into place. It's not broken, the mechanism itself seems fine and the key works if I push the little nubbin, so I'm not concerned about that. I just think $40 is too much to pay someone to click a key back into place! I wasn't even doing anything out of the ordinary with it like trying to remove or replace the keys T^T
    I'm especially gutted since I just bought a new iPhone from the same Apple shop I bought my laptop like three days ago - if I'd known my laptop was gonna bust I'd have saved myself the money and spent it on repairs instead! Fml, right?
    Any help you folks can offer would be very gratefully received - if it comes down to it and I have to fork out the money then I'll do so, but I'd like to explore community options first on the off chance that someone knows how to replace the mechanism and key without having to lug my computer all the way into the city to get it fixed xD
    Thanks in advance!
    Ehryn

    It's pretty easy to do, get something thin like a credit card and run it along the bottom and sides of the keyboard and there are several bracket things that will pop the keyboard up when you pressure them. There will be a couple of cables to clip out behind it so lift it up gently.
    You should be able to find a video on youtube anyway!
    Try this site for the keyboard http://www.replacementlaptopkeys.com/toshiba_qosmio_laptop_key.html
    It shouldn't be too hard to track a replacement down.

  • My itunes page has been replaced by a small window in the upper left hand corner of the desktop.  i can control my music, but cannot access radio, itunes store etc.  ie can only play my music in a random order that i cannot control.  i am unable to return

    i was listening to the radio on i tunes and suddenly the itunes page dissapeared and a small window appeared in the upper left hand side of the desktop. i can control only my music via this window which has a search fwd and back arrow and a play and pause button.  there is also a volumn set to full. i can control my music by the volumn control at the top rt of all pages. i want to access the itunes store and the radio, but cannot (can access the itunes store by googleing it.
    wt heck?

    Click the green button in the corner of this iTunes mini player to return to regular iTunes window.

  • My internal hard drive wont show on the desktop and is greyed out in the finder

    My Internal drive will not show up on the desktop, and appears greyed out in the finder.
    it shows up fine in disk utility and i have tried to repair permissions. This runs normally, there does not seem to be any problems with the drive itself.
    if i unhide the hidden system folders using terminal, it appears on my desktop again, but greyed out.
    any ideas how i can fix this?

    Try deleting the Finder .plists. You need to look in your user Library/Preferences for the .plist. Hold down the option key while using the Finder “Go To Folder” command. Enter ~/Library/Preferences.  Move the .plist(s) to your desktop.
    Relaunch Finder and test. If it works okay, delete the plist(s) from the desktop.
    If the Finder is the same, return the .plist(s) to where you got them from, overwriting the newer ones.
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    http://osxdaily.com/2011/07/04/show-library-directory-in-mac-os-x-lion/
    You might want to bookmark the command. I had to use it again after I installed 10.8.2. I have also been informed that if you drag the user library to Finder it will remain visible.
    If that doesn't work, try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode.  Shut down the computer and then power it back up. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application unistaller. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode
    Safe Mode - About
    General information.
    Isolating issues in Mac OS X
    Troubleshooting Permission Issues
    Step by Step to Fix Your Mac

  • Command Key Showing Desktop

    My right command key (middle key?) is showing the desktop how do i get it back to its regular function?

    on my keyboard.  Also, Its not my computer, sort of.  I just started working at a new desk, and trying to work out all the kinks.

Maybe you are looking for

  • Interactive Script Editor

    Hi all, I am using the SAP standard interactive script for Leads - SampleB2B When I click on the "Yes" button on the "Time for Questions" page, it has to take me to the Lead questionaire. This is configured in the Script editor too. But the Lead ques

  • Officejet 5740 unable to connect to network

    I have tried changing router settings, but the printer will not connect.

  • ACE: ifmgr process spiking every 15 seconds

    The following output is the command sh proc cpu | i ifmgr run every second for 1 minute. 896 6154 1923109 3 0.0 0.0 % 7.20% 7.54% ifmgr 896 6648 1923494 3 0.0 22.55% 8.43% 7.79% ifmgr 896 6648 1923494 3 0.0 22.55% 8.43% 7.79% ifmgr 896 6648 1923494 3

  • How to use bugzilla to report problems with OVM

    Hello, I want to use bugzilla.oracle.com to post some problems with OVM 3.1.1. After registration process (follow the link received in the confirmed email) I try to login, but it seems that it is not possible to login. Normally the login name should

  • Operations system status

    Hi All, I want to read the operations data of an order. I want the table in which operations system status is stored. Could anybody knows the table? Regards, Jeetu