Change keyboard keys

Hi,
I bought a new Macbook Pro in Switzerland with the swiss (german) keyboard. How can I change the keyboard to have the spanish or us keyboard keys. Does Apple change it for free?
Thanks
Regards
CLS

carlos277 wrote:
How can I change the keyboard to have the spanish or us keyboard keys. Does Apple change it for free?
Change it for free… TANSTAAFL, my friend.
Call a local Apple Store -- there's one in Barcelona
<http://www.apple.com/es/retail/storelist/>
or Apple Authorized Service Provider. I bet you won't like the price.
The alternatives are key overlays or replacing the keycaps (something I wouldn't try). Or just learn to live with it…

Similar Messages

  • How do i change keyboard key function ? When i type in alt+a, it does this : æ, but i would like it to write down an α (alpha) instead. How do i do that ?

    keyboard modification

    Open a new tab
    # In the address bar type about:config
    # Click "I'll be careful, I promise"
    # In the filter bar, just below the FF Address bar type: keyword.URL
    # set the Value to http://www.google.com.au/search?q=

  • How much does it cost to change one key on the keyboard ?

    i have dropped my hair dryer on my keyboard, i would like to know how much it cost to change these keys:
    1. v
    2. b
    3. n
    4. space key
    plz email me back at [email protected]

    Service Answer Center - iPhone - http://support.apple.com/kb/index?page=servicefaq&geo=US&product=iphone  <-- enter correct country in drag-down menu once on page.
    "Service arranged through Apple costs £ 55.00. A £ 7.44 shipping fee will be added if this service requires shipping. All fees are in British Pound Sterling and include VAT."

  • Events to detect change in physical keyboard key state

    I would like my application to respond in one way to a keyboard key being pressed, and then another way to the key being released. That is, I want my application to be able to reflect the actual physical state of the keyboard key.
    The obvious use of the (several) Java API's for keyboard events rapidly fires repeated KEY_PRESSED and KEY_RELEASED events if the key is held down for any time. This unfortunately obscures the actual state of the physical key (how do you know which was the last KEY_RELEASED?)
    Is it possible to turn off the key repeat feature, just for component, say?
    This would seem to be an obvious thing to do, but I can't find sample code anywhere. The code I find in the Sun Java API manuals all shows the above problem with key repetition.
    I would be also pleased to know that the solution of this problem is well known, on some FAQ or something, but I have looked through several FAQ's and searched this formum and have found nothing that helps. Also, I have had the misfortune of having to build messy and non-robust solutions for the equivalent problem in other development environments. I hope it is already there somewhere in Java and I'm just missing it.
    Thanks!

    "If two subsequent KEY_RELEASED and KEY_PRESSED
    events have the same
    timestamp, they are caused by autorepeat"
    This sounds good. But unfortunately the repeated
    KEY_RELEASED and KEY_PRESSED caused by key autorepeat
    on my system (Linux, java 1.5.0_09) have
    timestamps that increase with each repetition.I think this means only that the pair of pressed/release events have the
    same timestamp, not that every such pair has the same timestamp.
    That is, if you have the sequence PRESS,RELEASE,PRESS,RELEASE,
    the first two would have the same timestamp, and then the second two
    would have the same timestamp, but different than the first. Regardless,
    I found that also to not be the case; the PRESS and RELEASE did not have
    the same timestamp even between pairs.
    That said, this seems to work on both Windows and Linux, with the caveat
    that releases may lag.
    import java.awt.event.*;
    import java.util.HashMap;
    import java.util.Map;
    import javax.swing.*;
    public class LinuxKeyTest extends JPanel implements KeyListener {
         int delay = 750; // Must be > than your 500ms start delay.
         int delayRepeat = 75; // Must be greater than keyboard repeat interval.
         Map timers = new HashMap();
         int m_keyCode = -1;
         public static void main( String[] args ) {
              Runnable doRun = new Runnable() {
                   public void run() {
                        new LinuxKeyTest();
              SwingUtilities.invokeLater( doRun );
         public LinuxKeyTest() {
              JPanel panel = new JPanel();
              panel.setFocusable( true );
              panel.requestFocusInWindow();
              panel.addKeyListener( this );
              JFrame f = new JFrame();
              f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
              f.getContentPane().add( panel );
              f.setSize( 200, 100 );
              f.setLocation( 200, 200 );
              f.setVisible( true );
         public void keyPressed( KeyEvent e ) {
              int keyCode = e.getKeyCode();
              m_keyCode = keyCode;
              Integer timerKey = new Integer( keyCode );
              Timer timer = (Timer) timers.get( timerKey );
              if ( timer == null ) {
                   KeyTimeout keyTimeout = new KeyTimeout( timerKey, e.getWhen() );
                   timer = new Timer( delay, keyTimeout );
                   timers.put( timerKey, timer );
                   timer.start();
                   pressed( keyCode );
              } else {
                   ( (KeyTimeout) timer.getActionListeners()[0] ).setPressed( e.getWhen() );
                   timer.restart();
         public void keyReleased( KeyEvent e ) {
              int keyCode = e.getKeyCode();
              Integer timerKey = new Integer( keyCode );
              Timer timer = (Timer) timers.get( timerKey );
              if ( timer != null ) {
                   ( (KeyTimeout) timer.getActionListeners()[0] ).setReleased( e.getWhen() );
                   timer.setInitialDelay( delayRepeat );
                   m_keyCode = ( m_keyCode == keyCode ? -1 : keyCode );
              } else if ( m_keyCode != keyCode ) {
                   released( keyCode );
         public void keyTyped( KeyEvent e ) {
         public void pressed( int keyCode ) {          
              System.out.println( keyCode + " pressed" );
         public void released( int keyCode ) {
              System.out.println( keyCode + " released" );
         public class KeyTimeout implements ActionListener {
              private Integer timerKey;
              private int keyCode;
              private long firstPressed;
              private long pressed;
              private long released;
              public KeyTimeout( Integer key, long time ) {
                   this.timerKey = key;
                   this.keyCode = timerKey.intValue();
                   this.firstPressed = time;
                   this.pressed = time;
                   this.released = time;
              public void actionPerformed( ActionEvent e ) {
                   if ( released != firstPressed && released != pressed ) {
                        released( keyCode );
                        stop();
                   } else if ( m_keyCode != keyCode ) {
                        if ( m_keyCode == -1 ) {
                             released( keyCode );
                        stop();
              public void stop() {
                   Timer timer = (Timer) timers.get( timerKey );
                   timer.stop();
                   timers.remove( timerKey );
              public void setPressed( long time ) {
                   this.pressed = time;
              public void setReleased( long time ) {
                   this.released = time;
    }

  • How to change keyboard map fmrweb.res for different forms

    I'm using Oracle Forms 10g with Oracle Forms and Reports Application server 10g.
    I know how to change fmrweb.res to change how keys function on web forms. The problem I'm having is I only know how to assign the fmrweb.res file when connecting to the application server, which means all forms running on that session have to use the same keyboard mapping.
    I know you can change the defualt fmrweb.res for all the forms executed on the application server
    and you can change the fmrweb.res file in the URL like
    server/forms/frmservlet?Form=login.fmx&config=dataentry
    (where dataentry is defined in the formsweb.cfg file)
    and in the config section I have
    [dataentry]
    term=fullpath/fmrweb_new.res
    My question is, is there a way to pick a different fmrweb.res file based on the form?
    Can you specify multiple forms in the basexxx.htm file(basejini.htm) in the PARAM section like
    <PARAM NAME="serverArgs"
    VALUE="module=form1.fmx term=fillpath/filename1.res"
    VALUE="module=form2.fmx term=fillpath/filename2.res"
    VALUE="module=form3.fmx term=fillpath/filename3.res"
    VALUE="module=form4.fmx term=fillpath/filename4.res">
    Is there a way to pass term=fullpath\filename.res to the Oracle Forms Web Runtime process for each form using call_form, open_form, or new_form?
    Edited by: user537213 on Sep 19, 2008 5:38 PM
    Edited by: user537213 on Sep 19, 2008 6:24 PM

    Posiible approach (i now it sounds strange):
    Configure your enter-key to fire the KEX-EXEQRY-Trigger.
    In the dataentry-form-module: Overwrite the KEY-EXEQRY-Trigger so thtat is just does a NEXT_ITEM; .
    I know there may be other implications depending of the compelixity of your dataentry-form, but maybe this helps.

  • Why can't I get a replacement keyboard key from Apple?

    Rant version
    I was delivered a new 15 inch Macbook Pro with Retina screen with a broken 'V' key (literally, just the black plastic panel has a small broken clasp). I was unable to get a genius bar appointment anywhere within London Zone 1-2, Regent St, Stratford and Covent Garden all just tell me there are no appointments available. I called the Apple store in Stratford City to see if they could order a new 'V' key to the store so I could pick it up and click it on. They suggested I call Apple customer services as they wouldn't be able to help me unless I booked a Genius bar appointment, and obviously they had none. I was informed that I would have to send the entire machine away for at least 5 working days and then wait for a replacement to be shipped out. This is a total P.I.T.A as I have already started important projects on this machine.
    I managed to book a Genuis Bar appointment in Bromley (30 minutes drive from my house) and called to see if it would be possible for them to order the part in and fit it on the day, during my appointment. They said I would have to come in, just to show them the machine, and then they could order the part using my serial number. I asked why I couldn't just give them my serial number and come in when the part was delivered. They said that the telephone operator at the store could not make any sort of contact with the genius bar, regardless of the fact they are in the same building.
    I'd like to point out that everyone I have spoken to have been extremely nice, and understood my frustration, they just haven't been able to do anything that goes outside of their very limited protocol.I find it unacceptable that a company as powerful as Apple, are unable to post a keyboard key to a customer.
    As a computer enthusiast, this is the easiest and most simple problem I have ever had with a machine. It has also been the most common-sense defying process I have ever had the misfortune of being a part of. If it were up to me I would just pay the £3 for a replacement online, but Apple have changed the positions of the clasps from the unibody model by about a few microns, and I don't feel like waiting until someone decides to scrap a new RMBP.
    I don't mind if Apple don't want me to do the repair myself, that I may need to go through the enigmatic ritual of the genius bar to get this done (heaven forbid anyone but a Genius click the 'V' key on). I don't even mind if it takes a couple of weeks for the part to get there, I just want a replacement key, stuck on this laptop, without wiping the entire machine or sending it away for a week.
    Short version:
    If anyone knows where I can get a replacement 'v' key for the new 15inch Retina Macbook Pro then I'll love you forever.

    Yes it is sad but true I think. I EZprint to do my pano's and they turn out excellent. Give them a try.
    http://ezprints.com/Prints/panoramas/default.aspx
    Hope this helps.
    Tom
    desertdreamingphotography.com

  • Keyboard keys are not working

    Im on mac OS X 10.6.8 several keyboard keys are not working. For instance the at symbol is not working or question mark and random other punctuation keys. The problem started after running some code from terminal to trun off mouse acceleration and then installing a plug-in to control more accurately the mouse funtions. Ive since uninstalled the plug in and disabled the adjustment in terminal. Ive checked all the normal keyboard funcions to make sure settings were not funky. When I log out and log in as a differnt user the problem with the keyboard is fixed. Someone please help
    Code I ran
    defaults write .GlobalPreferences com.apple.mouse.scaling -1
    http://www.lockergnome.com/osx/2011/07/13/how-to-turn-off-mouse-acceleration-in- os-x/

    Hello lindzthecreator,
    I suggest this part of the article named One or more keys on the keyboard do not respond found here http://support.apple.com/kb/ts1381
    Some keys don't work as expected
    From the Apple menu, choose System Preferences.
    From the View menu, choose Speech.
    Click the Text to Speech tab.
    If "Speak selected text when the key is pressed" is enabled, the key or key combination set to speak text cannot be used for other purposes or used to type text--click Set Key and change it to a less-commonly used key combination (try to use modifier keys such as Shift, Command, Option, and Control). Or, disable the "Speak selected text when the key is pressed" option.
    Click the Universal Access pane in System Preferences, click the Keyboard tab.
    Make sure that Slow Keys is turned off. With Slow Keys on, you need to press a key for a longer period of time for it to be recognized.
    In the Universal Access pane, click the Mouse tab, and make sure Mouse Keys is turned off. With Mouse Keys enabled, you cannot use the Numeric Keypad to enter numbers--instead the keypad moves the pointer (cursor). (There is an option to enable Mouse Keys with five presses of the Option key; you may want to turn that option off to avoid accidentally enabling it.) If Mouse Keys is enabled and you are using a keyboard with no numeric keypad or Num Lock function, see Unable to type while Mouse Keys is enabled in Mac OS X.
    If the function keys on the top row of the keyboard are not working as expected, see Mac OS X: How to change the behavior of function keys.
    If the issue persists, use Keyboard Viewer to help isolate the issue:
    Click the Language & Text pane (Mac OS X v10.6) or International pane (Mac OS X v10.5.8 or earlier) in System Preferences.
    Click the Input Sources tab (or Input Menu tab in Mac OS X 10.5.8 or earlier).
    Click the Keyboard & Character Viewer "On" checkbox to select it (click the Keyboard Viewer "On" checkbox in Mac OS X 10.5.8 or earlier).
    From the Input (flag) menu, choose Show Keyboard Viewer.
    If the keyboard is connected and detected by Mac OS X, the keys you type will highlight in the Keyboard Viewer window. Open TextEdit (or any text application), and try to type something using the keys that were previously not responding to see if they highlight in Keyboard Viewer.
    Start from the Mac OS X Install Disc, choose Terminal from the Utilities menu and test the keys which were previously not working.  If the keys work while started from the Install disc, then the keyboard itself is working correctly.  Use Mac OS X: How to troubleshoot a software issue to isolate the software issue that may be causing the keys to not respond.
    All the very best,
    Sterling

  • Change Keyboard Layout, But Keep Language

    I have a MacBook with USA keyboard layout.
    While installing, by mistake i selected Latin American keyboard.
    Now, i want my language to still be "Spanish/Argentina", but they keyboard layout should be USA.
    How can i do that? Note that I don't want to have many input keyboards and then have to switch between latin and english language.

    I don't see an option to change "keyboard layout" only.
    Do you really not see the Tab called Input Menu under system preferences/international? There are boxes to check for keyboard layouts, and one is called US.
    Another Tab is called Language, and there you can put Spanish (actually Español) at the top to keep your OS in Spanish.
    Another Tab, in the middle, is called Formats.
    PS If you want to type Spanish with the US layout, you can use the Option/Alt key shortcuts. A list can be found here:
    http://homepage.mac.com/thgewecke/diacritics.html

  • How to change 'z' key into 'A' key with key blinding?

    How to change 'z' key into 'A' key?
    Although txt.setText("A") can set the text field with 'a', but it is not original input from keyboard because it cant trigger the key listener.
    It is possible to perform key pressing more than a key in same time? Example, perform 'q' & 'w' keys pressing at the same time.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Main
    {   public static void main(String[] args)
        {   JFrame f = new JFrame("Test");
            Test GUI = new Test();
            GUI.setOpaque(true);
            f.setContentPane(GUI);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.pack();
            f.setVisible(true);
    class Test extends JPanel
    {   JTextArea txta = new JTextArea(10,20);
        JTextField txt = new JTextField(10);
        JScrollPane sp_txta = new JScrollPane(txta);
        public Test()
        {   this.setPreferredSize(new Dimension(400,300));
            setLayout(new BorderLayout());
            txta.setEditable(false);
            add(sp_txta, BorderLayout.CENTER);
            add(txt, BorderLayout.PAGE_END);
            Action testAction = new AbstractAction()
            {   public void actionPerformed(ActionEvent ae){ txt.setText("A"); }
            txt.getInputMap().put(KeyStroke.getKeyStroke('z'), "test");    //Change z into A
            txt.getActionMap().put("test", testAction);
            txt.addKeyListener
            (   new KeyListener()
                {   public void keyPressed(KeyEvent e){ txta.append(e.getKeyChar() + " key is pressed \n"); }
                    public void keyReleased(KeyEvent e){ txta.append(e.getKeyChar() + " key is released \n"); }
                    public void keyTyped(KeyEvent e){ txta.append(e.getKeyChar() + " key is typed \n"); }
    }Edited by: 835972 on Feb 11, 2011 8:11 AM

    It is possible to perform key pressing more than a key in same time? Example, perform 'q' & 'w' keys pressing at the same time.With r.keyPress method, it only can perform single key pressed at a time. Do you have any idea how to perform multiple key pressed at a time?The javadoc for Robot.keyPress suggests ( "+The key should be released using the keyRelease method+" ) that the key remains "pressed" until you keyRelease(...) it. So, press the keys sequentially:
    theRobot.keyPress(KeyEvent.VK_Q);
    theRobot.keyPress(KeyEvent.VK_W);
    // At this stage both Q and W are pressed "in same time"
    ... // do stuff
    theRobot.keyRelease(KeyEvent.VK_W);
    // At this stage, only Q is pressedI suspect that in real life, unless you're a very gifted musician, you don't really press keys "at the same time" (under the time resolution of a keyboard, which I imagine is around a few milliseconds).

  • Looking for "Change Keyboard Type"-Button

    Hi. After installing Snow Leopard my Keyboard (from Cherry) works a bit wrong (some keys have wrong characters). I think there is something wrong with identification of the keyboard and wand to change it's type. "Help" (http://docs.info.apple.com/article.html?path=Mac/10.6/en/8962.html) says:
    1. Choose Apple menu > System Preferences, and then click Keyboard.
    2. Click Change Keyboard Type.
    The problem is, that there is no such Button "Change Keyboard Type" in Keyboard Prefs!
    So where can I change the type?
    Thanks,
    JB

    Hello Tom,
    I'm using two layouts - one is German and one is Russian-PC (Russian layouts are a little different for PCs and Macs). I don't know if it matters, but the system is running in English.
    I still believe, that the problem is in keyboard configuration. As I was installing 10.6, system asked me to "Press a button next to the left Shift" to identify, which type of keyboard I use. I didn't understand what the system wants from me and pressed a wrong key (I believe, I tried to press "Escape" but instead pressed the "^" key).
    Exactly the same thing happend to me a couple of times as I was installing 10.5.x - this message for Keyboard config is some kind of, I dunno, magic for me (or some poor interface design) - I always miss the point, and I've always pressed the wrong key. But in 10.5. there was a possibility to run keyboard identification once again from "Keyboard" menu (and so says "Help", too). But there is no more this button and I don't know if there were any other way to run identification again. (I've tried to plug-out and plug-in again, but it didn't help).
    Thanks for your help, I look forward to try to change layouts.
    Jurij

  • G505s keyboard - keys have started showing alternate values

    Certain keys, such as the one with the question mark, started typing é suddenly today. It may be a coincidence but there was a Microsoft update yesterday. I am running windows 8.1. Any advice on how to change the keys back to their original values

    hi mcooper9943,
    Welcome to Lenovo Community Forums!
    Your system might be set to a different language keyboard.
    Try
    Control Panel, Regional and Language Options, Keyboards and Languages,
    Change Keyboards. Make sure to delete the keyboard other than the US English,
    Hope this helps
    Cheers!
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Macbook Pro keyboard keys not working

    I am honestly so fed up. For the past three days keys have not been working. It started with the question mark and slash button now it's the command, six button, equal sign, and I'm typing in the dark because the key that increases the keyboard light is not working. Soon enough the backlight key will stop working and I'll be in the dark. I've read a couple forums and have tried every single troubleshooting that they've suggested and nothing seems to work. I also can't take it in anytime this weekend due to work. Anything I can possibly do (question mark). Also, trying to fix the question mark button I seemed to have ripped off the key and now it won't go back into place. my question is will apple replace this for free. Thank you. Also, I seemed to notice that the problems started occuring after I bought one of those keyboard covers. Pretty sure that has something to do with it. Since I'll probably have to go in on monday is there anyway I can change some keys so that for example, when I press shift and another button i'll get a question mark. Thank you.

    The easiest thing to do might be to get an external keyboard for the moment. As for replacing the key for free, you might get them to do it. If it's just a matter of getting the keycap back on, they probably will. If you broke it off and damaged the keyboad circuitboard, the whole keyboard assembly may need replacement.
    Have you tried resetting the SMC and PRAM?
    SMC
    http://support.apple.com/kb/ht3964
    PRAM
    http://support.apple.com/kb/PH14222

  • Changing Keyboard on selection of Language Programatically

    Hello All,
             Sub: Changing Keyboard on selection of Language Programatically.
    Note: Correction to earlier post
    Here we had a requirement on change keyboard on language selection, There is a list of languages in a dropdown based on the selection of any language we need to change the keyboard language (Key Pad).
    Eg, Suppose I have selected Arabic Language then we can simply type arabic language without any keyboard selections (settings).
    Is it possible in iPhone programatically?
    Thanks in advance
    Vinay Guntaka

    You need to ask these questions in the developer forums.
    http://developer.apple.com/devforums/

  • Change keyboard shortcuts

    Hello,
    Is it possible to change the keyboard shortcuts in Safari? In particular, I would like to change the keys and number of strokes used to switch tabs.
    Thank you, Kevin

    Hi Yang,
    Thanks for the response. I think I correctly followed your instructions, but the new commands don't work. Safari is now listed under Application Keyboard Shortcuts, and the new commands and shortcuts are there, but they don't work in the application. I also added the same shortcuts in NetNewsWire, but they don't work there either. I looked in ~/Library/Preferences/com.apple.Safari.plist for the new commands, and they aren't there. The new shortcuts I added were to change tabs using the command and lateral arrow keys, without using the shift key.
    Thank you, Kevin

  • C#: How to convert Keyboard.key (Unicode char as number) into correct char?

    Our application uses barcode scanner.
    when scanning a barcode and convert Keyboard.key (as ushort with value 16, it represents char ':') by using
    1)(char)(Keyboard.key)
    2) or Convert.ToChar(Keyboard.key),
    both way convert into symbol '+'.
    How to convert into ':'?
    What is a correct way to convert Keyboard.key as ushort into correct char? Thx!
    JaneC

    Hi Dan Nemec,
    It is normal '+'. It is special '+' symbol.
    We search a little bit and find out Unicode ':' is 3A and value is not 16.
    So during the process barcode scanner, the value has been changed in some way.
    We are trying to find out where the value has been changed.
    JaneC

Maybe you are looking for