Remap a key on keyboard?

I'm doing a bunch of data entry and would like to have a tab key on the right side of my keyboard. For example, I'd like to re-map the "F19" to to be a tab key.
Is this possible?

I'll let you sort these out if there's an answer in them.
[http://davespicks.com/writing/programming/mackeys.html]
[Apple developer site key binding information|http://developer.apple.com/documentation/Cocoa/Conceptual/EventOver view/TextDefaultsBindings/chapter9_section2.html]
[http://xlr8yourmac.com/tips/remapfunctionkeys.html]
[DoubleCommand|http://doublecommand.sourceforge.net> is software for Mac OS X (a kernel extension) that lets you remap keys. Has a preset variety of key modifier remappings, specifically for adapting PC keyboards to Mac users.
[Ukelele Mac OS X Keyboard Layout Editor|http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=ukelele] - mostly useful for character, not function mapping.
[See post #9 re. Quicksilver|http://forums.cnet.com/5208-6126_102-0.html?forumID=10&threadID=928 87&messageID=1048712] - programming hotkeys for applications

Similar Messages

  • Remapping character keys (not shortcuts)

    Hey everyone,
    I´ve got a US keyboard on my Macbook that I would like to use with a german key layout. I actually already physically switched a few keys around and am looking at buying my umlauts (ÜÄÖ) on ebay. Now as I don´t want to replace almost all keys I was wondering:
    Is there a way to remap character keys under OSX Lion?
    I´m not talking about shortcuts as this can be done in system preferences, I mean actual character key remapping.
    Any help would be greatly appreciated.
    Thanks,
    V

    Is there some reason why just switching to the German layout provide with OS X does not work?  You do this by going to system prefs/language & text/input sources and checking the box for German, plus the box for Show Input Menu in Menu Bar, and then choose German in the "flag" menu at the top right of the screen.
    If the layout provided by Apple is not exactly right, I can suggest another one you can install.
    If you really need to create a custom layout, then the tool is
    http://scripts.sil.org/ukelele

  • Remapping modifier keys and others via XML .keylayout file

    I have a video editing keyboard that requires some keys to be remapped to work correctly on my mac. Specifically I need to remap the modifier keys on the keyboard. The first thing I need to do is remap key 50 to be command instead of ~. I am trying to do this via a custom XML .keylayout file. I have read the documentation on .keylayout files and can't make sense of what it says to do. Also, I've tried many of the keymapping tools that people have recommended and they don't work for remapping modifier keys.
    Any help with this would be much appreciated. Thanks.

    Hi cstrouse,
    I think you should try the link below and use Ukelele; it does exactly what you need with a gorgeous graphic UI.
    I would'nt mess with XML...
    http://scripts.sil.org/cms/scripts/render_download.php?site_id=nrsi&format=file& media_id=Ukelele_2.2.4&filename=Ukelele_2.2.4.dmg

  • Lightroom 2.x - Remapping Library / Develop module keyboard shortcuts (Windows)

    SOLUTION: LR2 Library/Develop Keyboard Shortcuts
    Prepared by: Gordon McKinney
    http://www.night-ray.com
    For windows users - this is the latest update to my keyboard shortcuts for Library and Develop module. It has improved performance through caching.
    Quick access to Develop and Library module adjustments via your keyboard number pad. You'll need
    www.AutoHotKey.com to use this script.
    ; Gordon's Lightroom 2.0 Shortcuts Aug-22 2008
    ; www.night-ray.com
    ; Use numpad to perform certain develop and library functions.
    ; This effectively disables the number pad for digit entry
    ; (except 5 and 0) please use the main keyboard instead.
    ; Left/Right - Prev or Next photo
    ; Up/Down - Exposure
    ; Minus/Plus - Fill Light
    ; Page Up/Dn - Contrast
    ; Home/End - Color Temperature
    ; Div/Mult - Color Tint
    ; Enter - Paste Previous
    ; Dot (Delete) - AutoTone
    ; F9 Library Module
    ; F10 Develop Module
    ; F11 Slideshow Module
    ; F12 Web Module
    SetTitleMatchMode,2
    #IfWinActive, Lightroom
    F9::Send ^!1
    F10::Send ^!2
    F11::Send ^!3
    F12::Send ^!4
    #IfWinActive
    ; *** DEVELOP SHORTCUTS ***
    #IfWinActive, Lightroom - Develop
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrdAdd(09)
    numpad2:: lrdSub(09)
    NumpadAdd:: lrdAdd(11)
    NumpadSub:: lrdSub(11)
    numpad9:: lrdAdd(14)
    numpad3:: lrdSub(14)
    numpad7:: lrdAdd(04)
    numpad1:: lrdSub(04)
    NumPadMult:: lrdAdd(05)
    NumPadDiv:: lrdSub(05)
    NumPadDot:: Send ^u
    NumPadEnter:: Send ^!v
    lrdAdd(delta) {
    instance := lrGetControl( Static, 6, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {=}
    lrdSub(delta) {
    instance := lrGetControl( Static, 6, "Treatment :", delta )
    ControlClick, Static%instance%
    Send {-}
    #IfWinActive
    ; *** LIBRARY SHORTCUTS ***
    #IfWinActive, Lightroom - Library
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrlClick(03)
    numpad2:: lrlClick(02)
    NumpadAdd:: lrlClick(11)
    NumpadSub:: lrlClick(10)
    numpad9:: lrlClick(23)
    numpad3:: lrlClick(22)
    numpad7:: lrlClick(-6)
    numpad1:: lrlClick(-7)
    NumPadMult:: lrlClick(-2)
    NumPadDiv:: lrlClick(-3)
    NumPadDot:: Send ^u
    NumPadEnter::Send ^!v
    lrlClick(delta) {
    instance := lrGetControl( Button, 6, "Auto Tone", delta )
    ControlSend, Button%instance%, {SPACE}, ahk_class AgWinMainFrame
    #IfWinActive
    ; Fetch the Control Instance using Type, Title, and Instance Delta
    lrGetControl( type, typeLen, title, delta ) {
    global lrLastTitle, lrLastCBase, lrLastCache
    if (lrLastTitle = title and lrLastCache > A_TickCount )
    ; Cached! Saves time.
    return lrLastCBase + delta
    else
    WinGet, ActiveControlList, ControlList, ahk_class AgWinMainFrame
    Loop, Parse, ActiveControlList, `n
    IfInString, A_LoopField, %type%
    ControlGetText, text, %A_LoopField%
    IfInString, text, %title%
    StringMid, controlbase, A_LoopField, typeLen+1
    lrLastTitle := title
    lrLastCBase := controlbase
    lrLastCache := A_TickCount + (120*1000)
    return controlbase + delta
    return 999999
    ; End

    latest update... I will work on making the script 'adapt' the LR's changing control IDs. However develop seems reliable. Until then - use this version
    >; --------------------------------------------------
    ; Gordon's Lightroom 2.0 Shortcuts
    ; www.night-ray.com
    SetTitleMatchMode,2
    #IfWinActive, Lightroom
    ; Remap F keys for module change
    F9::Send ^!1 ; F9 Library Module
    F10::Send ^!2 ; F10 Develop Module
    F11::Send ^!3 ; F11 Slideshow Module
    F12::Send ^!4 ; F12 Web Module
    #IfWinActive
    ; *** DEVELOP SHORTCUTS ***
    #IfWinActive, Lightroom - Develop
    ; Use numpad to perform certain quick develop functions
    ; This effectively disables the number pad for digit entry
    ; please use the main keyboard instead.
    ; Left/Right - Prev or Next photo
    ; Up/Down - Exposure
    ; Minus/Plus - Fill Light
    ; Page Up/Dn - Contrast
    ; Home/End - Color Temperature
    ; Div/Mult - Color Tint
    ; Enter - Paste Previous
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    numpad8:: lrAdd( "Static144" )
    numpad2:: lrSub( "Static144" )
    NumpadAdd:: lrAdd( "Static146" )
    NumpadSub:: lrSub( "Static146" )
    numpad9:: lrAdd( "Static149" )
    numpad3:: lrSub( "Static149" )
    numpad7:: lrAdd( "Static139" )
    numpad1:: lrSub( "Static139" )
    NumPadMult::lrAdd( "Static140" )
    NumPadDiv:: lrSub( "Static140" )
    NumPadEnter::Send ^!v
    lrAdd(class) {
    ControlClick, %class%
    Send {=}
    lrSub(class) {
    ControlClick, %class%
    Send {-}
    #IfWinActive
    ; *** DEVELOP SHORTCUTS ***
    #IfWinActive, Lightroom - Library
    numpad4:: Send ^{Left}
    numpad6:: Send ^{Right}
    NumPadEnter::Send ^!v
    #IfWinActive
    ; End

  • Macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again

    macbook pro 15" mid 2010 i spilled water on keyboard now it wont power on if the battery is connected and the keys on keyboard doesnt work it works fine with no battery and external keyboard if i order a battery and new keyboard will every else work again lik it did before

    If you have records that show that you've taken your MacBook Pro in for a year to fix the machine, I would escalate the problem to Apple Customer Relations - unfortunately I don't have a number for Spain.
    It would only seem logical to me that if you've been trying to have the machine repaired during the time that the 'recall' was in effect that you should be eligible for a new logic board. But only customer relations will be able to make that call.
    Good luck - take the issue as high up the food chain as you can and see what happens.
    Clinton

  • By default, on a mac keyboard F3 lets you see all the open apps and the such. However, I changed it so that I use those keys for keyboard shortcuts; But i'd like the normal F3 key to still work without me having to press FN.

    By default, on a mac keyboard F3 lets you see all the open apps and the such. However, I changed it so that I use those keys for keyboard shortcuts; But i'd like the normal F3 key to still work without me having to press FN.

    rajlego,
    in the Keyboard pane of System Preferences, select the Shortcuts tab, and then select Mission Control on the left-hand side. On the right-hand side, make sure that the Mission Control checkbox is checked, double-click on its current key combination (by default “^↑”) so that the key combination is highlighted, and then press the F3 button — that will set its shortcut to be F3. You can now press F3 to bring up Mission Control without needing to also press the Fn button.

  • TS1381 My left arrow does not work on my macbook pro(model A1226).  I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, test all other keys with keyboard view (all others work)  - HELP!!

    My left arrow does not work on my macbook pro(model A1226).
    I have reset nvram, performed a safe boot, pulled the cache to desktop, replaced .globalpreference.plist, & tested all other keys with "keyboard viewer" (all other keys work except for the arrow). 
    In addition, I have gone thru all the recommended checks with universal access and have booted from snow leopard dvd and the left arrow still does not work. 
    I have tried using the left arrow key in all of applications I use such as: excel, ms word, address book, calendar, iphoto, terminal, & highlighting an icon and using the arrows to move to another selected icon.
    Here is the kicker!  In addition, I purchased a logitech solar bluetooth keyboard and the arrows work fine with my ipad but do not work when paired with the macbook pro. All other keys work fine on the macbook pro using the bluetooth keyboard.
    I believe this says that the problem is not in my macbook pro keyboard. So where can it be?
    Can anyone think of any other rabbit holes I can search?
    thanks and regards
    vats3

    I would also like to add that I've reverted the two cd drive and hard drive mods I did and the laptop is back to factory hardware and there is 0 corrosion or mold visible.

  • Sound keys on keyboard no longer control sound. What should I do to fix this?

    Sound keys on keyboard no longer control sound. What should I do to fix this?

    Hey Bill,
    Check to see if the option for "Use all F1, F2, etc. keys as standard function keys." is turned off. When it is turned on, you would need to hold the Fn key while hitting one of those keys will make it work they way icons are displayed. To find out where this option is, go to System Preferences > Keyboard and in the Keyboard tab is where you want to be. Take a look at the article below for more information. 
    How to change the behavior of function keys on your Mac
    http://support.apple.com/en-us/ht3399
    Takre care,
    -Norm G. 

  • Few keys in Keyboard is not working.

    Few days back my laptop( HP Pavilion G6) screen got froze(Laptop starting but no display, caps key blinking 3 times) so i checked on internet and come to know its may be because of error in memory module. So i put my RAM in other slot. Now my laptop started but a new issue occured.
    Now my caps, B,N ,Del keys in keyboard is not working. I am using Windows 7(64 bit)
    Please help me with this issue.

    Hi
    Please find the steps given below might help you to fix your issue.
    Go to device manager & uninstall the keyboard driver and restart the unit.
    Please update the driver for Bios.
    Try doing a system restore to the date where unit was working fine.
    Open command prompt type the letter and check if does not work you might have to replace the keyboard itself.
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • How to remap individual keys in Windows 7

    Hi all
    Received my new W510 yesterday and still discovering
    I bought it in the US but live in the UK, so have changed the regional settings to UK.  Now, however (and as expected) some keys don't match up, e.g. the " and @ is switched etc.
    How do I change/remap individual keys in Windows 7?
    Thanks for any help,
    Bennie Naude
    London
    www.deepliving.com

    try this:
    http://wiki.answers.com/Q/How_do_you_change_a_dollar_sign_to_a_pound_sign_on_a_keyboard
    if it doesn't work, bios editing will remap the key ( but editing bios will void the warranty.also, you need to have enough knowledge about bios editing. )

  • Is the ZAGG keys Universal Keyboard compatible with Apple TV?

      is the ZAGG keys Universal Keyboard compatible with Apple TV?

    The ZAGG keys Universal Keyboard  is  a Bluetooth keyboard that the manufacturer states is "compatible with most IOS devices"  but does not list Apple TV specifically, though the the different  IPADS that are compatible are listed.
    I did contact the manufacturer through an online Sales Associate Chat on their website and ironically they could not answer me.   They did take my email and stated they will research and get back to me.  That was only yesterday, 10/7/13 so I will give it a few days.
    I know there are other keyboards available, so maybe I will just research a little more.

  • How to setup my BIOS to boot my PC from any key on keyboard

    Can somebody tell me how and what to setup in BIOS (Neo2-FX with bios 1.b) to boot my PC from any key on keyboard? Only thing that I see in this bios is option “S3 wake up by PS2/Keyboard” but this didn’t help me.

    What is your pc spec's in full details including ur psu and put it in your sig? how did you updates your BIOS?

  • How to use a function key on keyboard for executing a non SAP program

    Hello Gurus.
    My client want to run a non SAP program selecting the specific function key on keyboard during the entering data on SAP.
    i knew that it is possible to execute a non sap program after adding special program each by SAP program.  but, it is huge jobs.
    client wants to run a non sap program wherever he is on SAP program.  Is it possible ?

    Hi,
    1. Create a ".exe" file for the .NET application.
    2. Create a PF-STATUS and assign the Function Code for the desired Function Key in the SAP program.
    3. In the USER COMMAND code inside program, when the respective function code is triggered, write the below code with the path to the .NET exe file.
    CALL METHOD cl_gui_frontend_services=>execute
      EXPORTING
        document = '.NET exe file path'
      EXCEPTIONS
        OTHERS   = 1.

  • Help with the Korg nano key usb keyboard!

    I recently bought the Kord Nano Key usb keyboard for the purpose of triggering drum sounds and sounds from the library. Will this keyboard do this?
    I have very limited time with which to read manuals and experiment. Could anyone just tell me how to get going with this keyboard. I have installed the driver and can see that some sort of signal is getting into logic.
    If it is possible, can you get me up and running quickly?
    Thanks

    I'm assuming the Akai came with a manual, I know Logic did, you're going to have to do a little of the work yourself, your question is so vauge that no one knows what you're tried, or if you've even tried anything at all! This is professional software... you HAVE to read manuals...  have you used Garageband?  Have you plugged the Akai in, have you looked in Logic's online help systen to see how to load a software instrument?
    Or job is not to hold your hand, this is a user forum, there are people here that will help but you need to to some work on your own. 

  • HP Pavilion 500-009cb Volume Key (on keyboard)

    What's up with the HP service on this bulletin??
    I see all other posts being replied almost right away, but mine just keeps being ignored.
    I can assure you this is not pleasant experience.
    HP Pavilion 500-009cb Volume Key (on keyboard) Problem
    ‎08-28-2013 09:21 PM
    It has been only 2weeks since I got the desktop.
    The volume keys with speaker pictures stopped working, not to mention the mute key.
    As well, the crescent moon sign beside the volume keys is not working as well.
    Fn keys, for example, search button, work fine.
    I believe I did two updates, because the system told me to do so when I turned off the computer.

    Hello ellesense,
    Please take a look at this document, which provides troubleshooting steps that I hope, helps to resolve your no-sound issue.
    Let me know how it goes.
    Also, your desktop should still be in warranty if it is only a few weeks old.  You can call in and speak to a live rep.
    If you live in the US, contact HP Here.
     If you are in another part of the world, begin Here.
    Good luck!
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Maybe you are looking for

  • How to find out whether the system user is a vendor or a purchaser

    Hi, I am working in SRM 5.0. I have a requirement that some fields of Bid invitation can be visible by purchaser but not to bidder. How to find out whether the system user (user id though which system logged in) is a vendor or a purchaser. Kindly hel

  • Ms sql server linked server with OraOLEDB.Oracle provider session handling

    Hi everyone!! Here's my situation: I have a MS SQL Server 2008 R2 with a linked server to Oracle via OraOLEDB.Oracle provider. I use a .net application to open a connection to my sql-server, execute a select that collects data through the linked-serv

  • SAP Installation java error package j2sdk-1_4_2_16-fcs is already installed

    Hi All, I need one help. I am trying to install SAP ECC 6.0 in REDHAT Linux 5.0 and Database Oracle 10.2. I have downloaded the below two java files j2sdk-1_4_2_16-linux-i586.bin j2sdk-1_4_2_16-linux-i586-rpm.bin I uncared the file j2sdk-1_4_2_16-lin

  • List service notifications web service

    I'm not sure where to put this question - so I thought I would try here We use service notifications.  These are created through transaction IW51 and listed through IW58/IW59. We have Microsoft Share Point as well. The Share Point people are asking m

  • JEditorPane - setPage

    How does one interrupt the loading of a HTML page in setPage of a JEditorPane? Have a situtation where clicking on different URL's should stop the loading of the previous page... Thanks Abraham Khalil