Redefining F keys

I love the F keys except for F7-F9 which are currently rewind, pause, forward. I NEVER use these keys. All the other function keys I use. I want to keep all the other keys the same but make these three keys expose, dashboard, spaces. I have tried changing everything in the keyboard setting but this is what I end up with.
Either (a) f7-f9 do what I want to, but no other keys work (unless I use fn+F# key -- which I don't want to do b/c it's a pain in the a$%)
OR
(b) Everything is the standard setting.
I have been to system pref. and checked "F1, F2 return to standard blah blah blah" and I've played around with the keyboard shortcuts -- even attempting to make some new ones. To no avail.
Please help.
thanks.
o

I believe you would need a 3rd-party tool, and one that messes with OS X at a low level. I don't personally like installing things like that, because of the risks of crashes or incompatibility with future Apple software releases. You could google for OS X keyboard remapping.

Similar Messages

  • How to redefine function keys in forms 10g

    i want to redefine function keys, for example i want to open LOV by pressing F9 not Ctl + L in forms 10g. can any one help me.
    zulfiqar

    Thanks Francois!
    Your info will be useful to me, as my customers were complaining about it.
    I didn't give attention or did any R&D on it because I thought for us main challange is to make ERP work on web first.

  • Redefining Shortcut Key Commands??

    How would i go about redefining the R key (currently set to record) to Zoom In?
    I am so used to the ProTools shortcut keys, I rebound them in Logic Pro 7.2, but they seem grayed out in the "Logic Pro > Preferences > Key Commands" Menu
    I can't figure it out, and I've looked in the manuals, Its gotta be something simple?
    Thanks
    From Luke
    Australia

    Scott,
    I like the simple answer for the simple solution.
    Thanks - Scott

  • Possible to redefine function keys via Ansi ESC sequences in terminal?

    If it is possible, I would be be very grateful if somebody could be so kind as to show me a couple of examples.
    BACKGROUND:
    I want to reconfigure my function keys in terminal,via ansi-escape-sequencenses from
    a script, before invoking the "screen" utility, to make it less cumbersome to use.
    It's really nifty, if you want to see som manpages, without ending up with a zillion of terminalwinwindows, and you can name the windows too, so you can easily see the difference between
    terminfo and bash for instance, - but the keypresses for invoking screen is quite cumbersome.
    I will try do it by ansi-sequences, but I haven't managed to do that yet.
    I want to store other keypresses, like [^A"] on functionkey F2 for instance.
    I have no intention to restore the keys, as i just close the window when I'm finished using screen.
    I have configured my function keys in terminal, and I think that writing new values for them in the defaults database, and be able to use the new configuration from within terminal is a little to much to expect.
    If anybody has a solution not including ansi sequences, I'm open for that as well.
    Sincerely
    mc Geek

    Thank you. That wasn't what I had in mind, but thats what I'll go for, as I can't seem to figure out how to send and ansi escape sequence that does it, and creating a new terminfo file with the new settings, exporting it, and and creating a new subshell is just too much work. "Screen" runs fine now, with some function-key bindings.
    sincerely

  • How to redefine default keys?

    Currently I use FORMS 6i and wish to define
    SCROLLUP and SCROLLDOWN events to PAGEUP and PAGEDOWN keys. How to make it?
    thx.

    You can use Oracle Terminal. More about it you can see in the Forms on-line help.
    Helena

  • Invoice Block - Tolerance Key - Can currency can be changed??

    Hi Gurus,
    We can set the below in SPRO,
    Material Management->Logistic Invoice verification->Invoice Block->Set Tolerance Limit-> Here we can maintain for company code / Tolerance Key and details.
    While we maintaining the tolerance key, depending upon the company code, the currency is defaulted. (Currency field is display status).
    1. We have a request to change this currency to different currency? is it possible?
    2. I find about 14 Tolerance Keys. Are these tolerance keys provided by SAP. Can we define or redefine tolerance key? if so, where?
    Kindly inform me the above details.
    Thanks and Best Regards,
    Mohan

    hi,
    Example:
    Suppose if you have set the del. cost in the PO as A...
    After this you do MIGO...
    And then you come to MIRO, and in between suppose if the delivery cost increases or decreases(may be due govt. rules),
    then in that case you try to save amount/pay more to the vendor.. or
    In case if any or your employee is not entering the del. cost properly, then in that case, system shd check internally and throw a message for you and if req. block the invoice...
    So, in that case just for precautions you use the this tolerance key...
    if in case this happens assuming with my first example then you may need to release this IR manually..
    Formula i have provided above by which system calculates this all..
    Regards
    Priyanka.P

  • How do you override the WINDOWS key?

    I'm writing or rather rewriting a game. I would like to override the windows key to do some function in the game without invoking the windows menu. Is this possible, and if so how?
    Below is a sample bit of code I used to see what key codes, locations, and events were fired while pressing various keys. I made the key pressed/typed/released methods consume the events in an attempt to block the windows menu from coming up. I tried using a KeyEventDispatcher to catch all key events and consume them there, but it still displays the windows menu (on Windows 2000 at least).
    I have searched the forums and the all mighty Google to no avail. Please help me if you can. Thank you.
    import java.awt.Dimension;
    import java.awt.KeyEventDispatcher;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.FocusManager;
    import javax.swing.JFrame;
    public class Test extends JFrame implements KeyListener, KeyEventDispatcher
      public Test()
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        addWindowListener(new WindowAdapter()
          @Override
          public void windowClosing(WindowEvent windowEvent)
            System.exit(0); //close all windows and exit
        FocusManager.getCurrentManager().addKeyEventDispatcher(this);
        this.addKeyListener(this);
        this.pack();
      public static void main(String[] arguments)
        Test frame;
        frame = new Test();
        frame.setTitle("Test Frame");
        frame.setPreferredSize(new Dimension(200,200));
        frame.invalidate();
        frame.pack();
        frame.setVisible(true);
      // this doesn't stop windows key from being processed whether true or false
      // if it is true the keyPressed, keyTyped, and keyReleased don't get called
      public boolean dispatchKeyEvent(KeyEvent keyEvent)
        System.out.println("dispatchKeyEvent " + keyEvent);
        return true;
      public void keyPressed(KeyEvent keyEvent)
        System.out.println("keyPressed " + keyEvent);
        keyEvent.consume();
      public void keyReleased(KeyEvent keyEvent)
        System.out.println("keyReleased " + keyEvent);
        keyEvent.consume();
      public void keyTyped(KeyEvent keyEvent)
        System.out.println("keyTyped " + keyEvent);
        keyEvent.consume();
    }

    Thanks for the reply. That is basically all I wanted to confirm. I wanted to allow the player to redefine the windows key to some game specific command. I can do this for all of the other keys I was able to test except for that one.
    If someone uses it on something other than windows they can redefine any key that maps to one of theirs. Since I don't have any alternate systems or keyboards to test on I won't bother making other keyboard configurations for the time being, if ever.

  • Midi keyboard key A2 not working with Logic Pro 8

    Hello
    I was using an m-audio keyrig 49 for a good 3 months, when all of a sudden the A2 key stopped working properly. The transport bar in logic shows that midi data is being received when I press A2, however there is no velocity value. The key only makes a sound when I'm going from another key to it, and even when that happens there is a sustain effect on the note, which aren't on any other keys.
    I have tested this on midi keyboards from m-audio, novation, and edirol... keyboards that require drivers and keyboards that don't require drivers.
    Any ideas?

    Try redefining the key commands. Sometimes they can be a little flaky when importing earlier key commands. Redefining them might "unstick" them...

  • [SOLVED] Redefine Keyboard (with xmodmap)

    Hello List,
    I just discovered Arch Linux and need to know if there are ways to redefine the keys of the keyboard. I used xmodmap to do this in Ubuntu, and I need a custom keyboard for Emacs use.
    Thanks for any hints
    PS
    Registering is a pain ... I used my usual eshell for the 'answer', but to no avail, only after switching to a normal (gnome) terminal window things worked out. Not really a warm welcome for new users, five minutes more and I would have abandoned the idea of trying Arch linux.
    Last edited by 4on6 (2011-10-07 15:53:30)

    4on6 wrote:Registering is a pain ... I used my usual eshell for the 'answer', but to no avail, only after switching to a normal (gnome) terminal window things worked out. Not really a warm welcome for new users, five minutes more and I would have abandoned the idea of trying Arch linux.
    https://bbs.archlinux.org/viewtopic.php … 90#p999690
    Last edited by karol (2011-10-05 23:33:07)

  • Override a key binding

    Is there a simple way to overide a key binding:
    I have a GUI and I want the SPACE key to do something, the same thing anywhere in the app.
    But the default behaviour is to fire the action on the object wich has the focus.
    I tried this:
    InputMap im = this.getRootPane().getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
              ActionMap am = this.getRootPane().getActionMap();
    im.put(KeyStroke.getKeyStroke(KeyEvent.VK_SPACE,0),"myAction");
    am.put("myAction",new myActionClass(this));
    I.E. tried to redefine the key on the highest JComponent object with the WHEN_IN_FOCUSED_WINDOW scope but it did not work -> it still triggers the action on the buttons which has the focus in the button bar for example. I'm sure I did not understand the key bindings properly
    Do I need to remove the default SPACE binding for all object ?
    Is there a simple way to redefine the SPACE key binding for all my application, everywhere, not depending on what object has the focus ?
    Thanks a lot
    Zill

    I believe the WHEN_FOCUSED binding on the button will be applied before any WHEN_IN_FOCUSED_WINDOW bindings, so that won't work. You could simply ensure that your buttons never get the keyboard focus, by calling button.setFocusable(false) (I'm assuming jdk1.4+ here) on them when you create them. That won't affect menuitems or the buttons on built-in dialogs like JFileChooser and JOptionPane, but it might be sufficient.

  • A few thoughts and experiences after a few hours using my new ThinkPad E440 with Win 8.1

    After waiting 36 days for my new ThinkPad to arrive, I guess I'm just "eh" about it after using it some. Here are some of my thoughts, opinions, and experiences I've had after using it for a few hours... Hope this helps other people.
    I should not be surprised because I read all the reviews, but the touch pad really sucks. I hate everything about it, the way it clicks - it's so loud and clunky! - and it's insensitivity (and I adjusted this to be more sensitive). Thank goodness for the track point. I love that thing.
    The touchscreen stopped working after a few hours of use. After I rebooted it came back. Is this a bad omen? Or did I inadvertantly turn it off? Is that even possible? I am new to Windows 8 so anything is possible.
    The touch screen, when it's working, is not very responsive. It's MUCH LESS responsive than my Samsung Galaxy Note 2 Android phone or my LG G Pad 8.3 tablet. This is very disappointing.
    I ran the hardware scan that is in the Lenovo Solution Center and got a warning under the category "Local Connection Test". I looked at the list of System Events and it's very long. The first application error event name is MpTelemetry. Response is "Not available". The next one is "PnPRequestAdditionalSoftware". Response is "Not available". And the list goes on and on and on for pages. I have no idea what to do about this or what it means.
    Also in the Lenovo Solution Center, under Software, there is a Critical Alert that says I never updated Windows. But I did when it prompted me to while it was first booting up and it was updating and installing things. Where it says "To update your operating system, you must run Windows Update", I click on the Launch button and it takes me to Windows Update where it says No Updates are Available. Go figure. It also says there have been 9 Windows updates made to the computer. I guess I'll have to just always ignore that Critical Alert.
    In the system tray, it says "ThinkPad OneLink Dock Detached!". I don't have a dock... So, yes, that's true, it is detached.   I'll have to hide that one.
    I realize there is a Lenovo Recovery Partition on the hard drive but I would really like to create a set of recovery disks before I start customizing this thing, installing apps, and moving my files over. I can't find anything that tells me how to do it. Under the control panel, there is the Recovery icon. The only choice there for creating recovery media is to create a Recovery Drive, not disks. I'll post a separate item to get information on this.
    On the positive side, I have had it in my lap the whole time and it's not gotten too hot for my legs. That's a big improvement on my old Toshiba Satellite Pro.
    This locating the Fn key to the left of the CTRL key decision must have been made by someone smoking crack. Why would anyone in their right mind want to do this? We've had the CTRL key on the outer left edge like, FOREVER, why move it now?? This will be something that will take me a long time to adjust to - if I ever do. I use the CTRL a lot for cutting, pasting, and formatting things in Excel and Word. It's going to be a battle. I wonder if any software exists that allows you to redefine the keys? Speaking of location of keys, I keep hitting the Page Down key when I want the Page Up key. I'm used to the Page Up key being above the Page Down key instead of to the left.
    After being told here in the forum that the fingerprint reader was not an option in the US I am pleasantly surprised to see one on my new ThinkPad.
    I use the right-click on my mouse often. For example, to open a link in a new tab instead of switching to the new URL. For some reason, when I click on the right part of the touch pad when the mouse is located over a link, it just opens the new URL instead of giving me options for opening the URL. I'll have to figure this out.
    So anyway, I guess that's more than a few things... hope this is useful to someone...

    You can change FN and CTRL key in the BIOS

  • Can't emulate a keypad even with KeyRemap4MacBook.

    Hi, so the trouble I'm having is that I can't replicate a keypad in a game I want to play. Because I have KeyRemap4MacBook installed I can hold FN + j/k/l/etc. to produce 1/2/3 - however the trouble is the game I'm playing doesn't recognise these as any different to numbers on the number line at the top of the keyboard. The reason why this is an issue is that in the game I want to play the keypad is used to transfer quantities (say 300 arrows) whereas the number line is used when you want the number to appear in text (say in a text box); without the keypad functionality I would have to wait several minutes each time I wanted to transfer anything as the only way to make it happen would be to let it slowly count up to the desired number - making the game unenjoyable.
    I've tried the option in KeyRemap4MacBook that states FN + Number to Keypad (number), but again with no luck. The game I'm playing is through a Wineskin wrapper (there was no mac release) which I thought might be causing an issue - however if this was true then surely I wouldn't be able to use FN + j in game to produce a 1? As I said I can do this, it's just that the game is not treating it is a keypad number (it will type the number instead of the letter when the combo is pressed in a text line, but it can't be used to transfer specific quantities as it should be if the mac was treating the keys like a proper keypad).
    I don't want to buy a physical keypad, as this has made me dubious that one would even work in the first place and it seems like an unnecessary expense when I don't require it for much else. I guess whilst this could just be a quirk unique to this game (if you needed to know, it's Arcanum), I find that hard to believe and it makes me concerned that I'll have difficulty playing other games that for the most part require a keypad. Thanks in advance for any responses.

    Jojobobo,
    if you look in KeyRemap4MacBook’s Preferences at ▼ For Applications ▼ Enable at only Warcraft III, you’ll see an option for “Custom keys for Dota items” which redefines four keys as four keypad numbers. If you enable this option, does your Wineskin-wrapped game then recognize those four keys as being keypad numbers? If it does, then you should be able to create your own KeyRemap4MacBook mapping based on the Dota item mapping to produce the full set of keypad numbers. If it doesn’t, then KeyRemap4MacBook’s emulation doesn’t survive the Wineskin layer, and you’ll have to try something else (such as checking the KeyRemap4MacBook Google Group to see if anyone else has encountered and worked around this situation).

  • Camera RAW JPG 'Save image....' dialogue reversal?

    In camera RAW, to save a JPG you click on the 'Save image...' dialogue and another window opens with the JPG options.
    To skip this window and directly save the image, you hold down the ALT key and click on the 'Save image'.
    Is it possible to reverse these settings, so that if you want the JPG dialogue to open you have to hold down the ALT key and to save without the dialogue, you just click on the save button?

    Thank you, Mr. Spock!
    Very true. it would be counterintutive.
    But my left hand is stiff from holding the ALT key!
    Is it possible to redefine the keys in camera RAW?

  • How to tab back to the previous item in sql form 3.0?

    Dear all,
    Which key combination is for doing this?
    Rgds,
    Edward

    Oraterm defines the keys for specific functions, e.g. F7 = Enter Query, F8 = Execute Query. Oracle has a standard list, but most applications redefine the keys.
    In Help -> Show Keys look for Previous Item to see which key to use (maybe Ctl-Tab or Shift-Tab).
    In Forms 3, if I remember correctly, Show Keys is Ctrl-K by default.

  • Keyboard Settings button disabled

    On opening Region and Language > Input Sources, the wrench button is disabled. I can't figure out which package is needed to select that option despite searching around.
    Attached screenshot below.
    Anyone else ran into this on a fresh arch install with the gnome 3.6.2 package?
    --V
    Last edited by vellvisher (2013-04-01 18:15:04)

    Yup! Have that installed..(thanks for the reply though!)
    If I remember correctly, in Ubuntu, this brought up a screen to change the caps-lock key behaviour to esc, etc...I already used dconf to map it, I am sure that there is something wrong with my keyboard settings.
    (Possibly) related problem using  "Custom Shortcuts" to map "gnome-terminal" to "Ctrl+Alt+T", stops working on reboots until I redefine the key.
    Last edited by vellvisher (2013-03-31 06:24:44)

Maybe you are looking for

  • How do I set a location in Calendar

    I just upgraded to Mavericks, one of the interesting new features was location in Calendar. I cannot get that to work. Location services are enabled for Calendar. If I type a full address into "Add location" field, it does not get saved. It is gone w

  • PUSHBUTTON and AT SELECTION-SCREEN

    Hi, I don't understand why I'm not being able to catch the user command in the example below.  I tried in the CASE statement sscrfields-ucomm, sscrfields, sy-comm, but none of them work. Is the problem related with displaying a message ? Or am I inde

  • Appleworks SS pie chart labeling

    I cannot override the "Series 1-7" labels that serve as the default legend in my pie chart. The data wedges in color (with their percents) are fine, the title of the chart is fine. I just want to put four cells of names (column A) in place of the "Se

  • An error occured while restoring the iphone -50

    i lost all messages and contact  ***!!!  please help

  • Broadband Option 2

    Am I the sort of customer BT no longer wants? Just rang for my annual contract renewal to find that the 40GB limit is no longer available to me and also that the net protect package I've had for several years is now a pay for add on - it seems it wou