Is there a way to customize keyboard shortcuts in applications?

Some applications allow keyboard shortcuts to be customized, usually in preferences, but I'm wondering if there's a way to customize keyboard shortcuts in apps that don't have this feature built in.

from Apple's OS X Help Menu:
Create keyboard shortcuts for apps
Assign your own keyboard shortcuts to menu commands in any OS X app, including Finder. This might be useful if a global shortcut, which works the same with most apps, conflicts with a specific app shortcut. In this case, you could assign a different key combination.
You can only create keyboard shortcuts for existing menu commands. You  cannot create keyboard shortcuts for general purpose tasks such as opening an app.
Choose Apple menu > System Preferences, then click Keyboard.
Open Keyboard preferences for me
Click Shortcuts, select App Shortcuts, then click Add (+).
Click the Application pop-up menu, then choose an app. If you want to set the same key combination for a menu command that appears in many apps, choose All Applications.
If the app you want to select doesn’t appear in the list, choose Other, then locate it using the Open dialog. Some apps may not allow you to set keyboard shortcuts.
Type the menu command for which you want to set a keyboard shortcut in the Menu Title field.
You must type the command exactly as it appears in the Application menu, including ellipses and any other punctuation. To type an ellipsis, use three periods without spaces.
Click in the Keyboard Shortcut field, press the key combination that you want to assign to the menu command, then click Add (+).
You can’t use each type of key (for example, a letter key) more than once in a key combination.
Quit and restart any apps you’re using for the new keyboard shortcut to take effect.
If you assign a keyboard shortcut that already exists for another command or another app, your new shortcut won’t work. Find the menu command that’s using it, then reassign the keyboard shortcut for that item.
To remove a customized shortcut, click Delete (–).
SEE ALSO
If a keyboard shortcut doesn’t work

Similar Messages

  • Is there any way to disable keyboard shortcuts?

    The number of times we've been doing a stream and someone has accidentily hit the spacebar and killed the stream is very anoying.
    Is there any way to disable the keyboard shortcuts so this isn't an issue?
    Many Thanks,
    Ady

    This might go into too much detail but I suspect since you're referring to a basic system function you're going to have to address this at a pretty basic level in the system operations which isn't always easy without major hacks.
    [Apple developer site key binding information|http://developer.apple.com/documentation/Cocoa/Conceptual/EventOver view/TextDefaultsBindings/chapter9_section2.html]
    You could check utilities such as Quicksilver, Butler, Spark, and Ukelele.

  • Is there ANY way to change keyboard shortcuts? Problem with conflicts,

    I know there is no simple way to do this, but there are certain
    hotkeys I am have used over the years and I want to have FF work the way I want, not in the way it is presently set up.
    Is there any was of getting into the code, ANY files I can edit to accomplish this?

    Try this extension.
    * Customizable Shortcuts: https://addons.mozilla.org/firefox/addon/customizable-shortcuts/

  • I like to manually create lists when I take notes, so is there a way to create a shortcut/hot key for different symbols in the Pages inspector?

    Not really a Pages user, but I am trying to make the switch from Word if I can figure out a few ways to customize Pages. I don't want to create a new paragraph style because I rearrange my lists a lot. I think there is a way to automatically create a custom list style, but I like to make lists manually because I frequently change things around. I would like to be able to manually add symbols. I know that Option + 8 will give me a bullet, but I would also like to use different symbols I found in inspector, like a black square and a black triangle. Anyone know if this is possible?

    If what you're looking for is a more flexible way of quickly just including any symbol of your preference when you're taking notes (without establishing a more structured list like picas suggestion) there are a number of ways to use keyboard shortcuts to get a variety of symbols. Here is a link that you can use to hopefully find what you're looking for:
    http://www.wikihow.com/Make-Symbols-on-a-Mac
    You can also try http://support.apple.com/kb/ht1343 to find other keyboard shortcuts.

  • Customize Keyboard Shortcuts in Photoshop Elements 9?

    Hello, where is the customize keyboard shortcuts dialog? I bought an app for my iPod Touch that uses a .kys file to map the commands to the computer, and I could not find a way to change the keyboard shortcuts.

    I've never seen the dialog in a shipping version of elements, but here's one way.
    1. Make a copy of the .kys file and then change the name and extension to:
        Keyboard Shortcuts.psp
    2. Copy the renamed file into the pse9 settings folder.
        Example for windows vista:
        C:\Users\Your Name\AppData\Roaming\Adobe\Photoshop Elements\9.0\Editor
        Example for mac:
       Users/[Username]/Library/Preferences/Adobe Photoshop Elements 9.0 Settings
    Copy the renamed file into the editor/settings folder and start or restart pse9.
    MTSTUNER
    Message was edited by: MTSTUNER

  • Is there a way to customize scale quantize?

    Is there a way to customize scale quantize? In other words, is there a way I can create my own constraining scales?

    Yes..
    Create a new Project
    Go to the Project Settings screen via the menu option File: Project Settings : Tuning
    Select Fixed and then click on the dropdown menu as highlighted above
    Now you will see a long list that includes the following as examples...
    If the Hungariian Scale isn't included (I didn't see it specifically but it may be hidden away in the long list...
    Then you can click on the User option and create your own tuning scale....
    Cheers..
    Nigel

  • Is there a way to customize the web form link in Adobe FormsCentral?

    The dedicated link has a quite complicated address, not easily added to brochures to hand out.  Is there a way to customize the web form link in Adobe FormsCentral?

    It cannot be customized. The workaround is to create your own web page and embed our form into it. That way they only see your URL.
    Randy

  • Customize Keyboard Shortcuts

    Using a Mac OS 10.6.8 with Acrobat X Pro.
    Is it possible to cutomize the keyboard shortcuts for Acrobat? I want, for instance, to set up a quick key to Accept a Comment.
    Marc

    You cannot customize keyboard shortcuts for Acrobat.
    It should be possible to set up a custom toolbar button or menu item that sets the status of the selected comment. I haven't actually done this, but it looks like all the pieces are in place. If you made it a custom menu item, you'd be be able to access it throught the keyboard. A custom toolbar button would make it one click instead two plus the menu traversing as it currently is.
    You can do the same type of thing for anything that can be implemented with JavaScript.

  • Is there any way of creating typing shortcuts on iPad Air iOS8?  For example typing "wcybl" results in "will call you back later".

    IIs there any way of creating typing shortcuts on iPad. For example, "wcybl" when typed could result in "will call you back later"

    Follow Japib's directions then enter the shortcut like in the screenshot. Be sure to tap save.

  • Is there a way of using keyboard input?

    Is there a way of using keyboard input in Edge? For example when you press the space-bar it will open a url. This is probaly done though programing.

    Shift/Command and Alt/Control have there own separate event routines.
    Example
    e.metaKey         // depends on browser and targets the Apple key
    e.ctrlKey             // targets the Control or Ctrl key
    e.altKey              // targets the Alt key
    e.shiftKey           // targets the Shift key
    So if you only wanted the event to fire when the Shift key is pressed, then
    if (e.shiftKey){                                              //If Shift key is pressed 
           window.open("http://www.adobe.com", "_blank");
    If you wanted to combine the Shift key + Space Bar to trigger the event, then resort to logical operators. In this case you want to 'combine' key strokes, then the logical operator would be a double &&, and demonstrated below.
    if (e.shiftKey && e.which == 32){                     //If Shift Key + Space Bar pressed
          window.open("http://www.adobe.com", "_blank");
    If you wanted to combine the Shift key + some other keyboard Character Code from the above noted list (http://rmhh.co.uk/ascii.html), then change the value of e.which to equal (==) that Character Code. Example from the list, the Character Code for the keyboard 'a' is 65, as altered below.
    if (e.shiftKey && e.which == 65){                     //If Shift Key + A pressed
    window.open("http://www.adobe.com", "_blank");
    To get an accuarte keycode value, there are two demonstrations on this page http://api.jquery.com/event.which/, whereby you can type in thee field and it will capture the value for you.
    Good luck
    Darrell

  • Is there a way of making Maverick's Calendar application NOT to automatically show event times?

    Is there a way of making Maverick's Calendar application NOT to automatically show event times?

    I wonder if this Option (named Show Event Times in Mountain Lion) is simply not there anymore in Mavericks or if the Checkbox is simply missing and while come back in future Updates of Mavericks?
    Is there a way to disable the "Show Event Times" maybe through the Terminal?

  • Is there any way to open an VB6 execulatble application via a Sharepoint application page?

    Is there any way to open an VB6 execulatble application via a Sharepoint application page?

    No, only thing you can do is add a link to a sharepoint application page that points to a vb6 executable, once the end user clicks that one, the client OS and end user decide what happens next.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com
    can you give me a reference on how to achieve this, please.

  • Is there a way to make keyboard text shortcuts work better?

    For example: omw = On my way!
    On iOS these work accross the board, but on OS X they only seem to work on certain applications. Such as TextEdit, but have limited or no use in other applications. They work ok in the URL bar in Safari, but try to use them in a text field (such as the one I'm typing in now) and they don't work. It's especially irritating when I try to log into a website, and I can't use my custom shortcut for my email address. I can easily do this on iOS, but not OS X.
    Is there any way I can get text shortcuts to behave better on OS X, or is this a hopeless dream...
    If you don't know how to access them, it's:
    System Preferences -> Keyboard -> Text (OS X)
    General -> Keyboard -> Shortcuts (iOS)
    It's great that they sync accross both platforms, but it's pointless if I can't use them on properly on OS X.

    Sounds like you did this on the fly.
    MM is supposed to open the Marker Panel Dialogue
    M just sets a marker
    Not sure if either are intended for on the fly during playback .
    There is also a Marker Icon on the Source Window Pane  >>

  • Is there a way to create a shortcut for the 'copy unique selector' tool in Web Developer?

    Currently the only way to copy a unique selector is to either double click in the inspector tool, or access the popup bubble and click 'copy unique selector'. Is there a way to create a keyboard shortcut for that process?

    Hi Dubes,
    Thank you for your question. Maybe you can try the [https://addons.mozilla.org/en-US/firefox/addon/customizable-shortcuts/?src=search Customize shortcuts add on]

  • Is there a way to customize categories in the pop-up menu on the Transactions page for Personal Budget without having to do it one by one?

    I want to use the Personal Budget template but customize my own categories. I can change the categories on the Budget sheet and know how to add the new data to the graphs but I am having trouble on the Transactions sheet. I know when I click on a cell in the category section there is a drop down menu of catefories that I can edit in the data format option but do I have to do this for every cell? Is there a way to edit for all cells at once? Everytime I add a new cell its has the original categories and I would hate to have to format each one individually.

    Set up one with the categories you want in the order you want.
    Select the cell and press option-command-C to copy the format (style).
    Select the cells you want to change and press option-command-V to paste the format (style) to those cells.
    If all body cells in a column have the same style (in this case, 'same list'), added rows will adopt that style.
    Regards,
    Barry

Maybe you are looking for

  • Sales Orders Outside Credit Horizon

    Hi everyone, My client has implemented FSCM credit management, using a Dynamic credit check with a 6-day credit horizon.  It was my understanding that for an order where the material availability date of every schedule line is outside the credit hori

  • How do I get my Apple TV NOT to control my Macbook volume?

    We just recently bought an Apple TV. We synced it to our new remote to control volume and everything. Now, when we're on the Apple TV, when we move up and down on the screen, my volume on my Macbook Pro goes up and down with the tv. How do I get that

  • Has anyone checked out the latest iTunes update where you are supposed to be able to view your wish list from your music library?

    I updated my iMac yesterday to check out this new feature, but I can't seem to figure out how it works. Can anyone tell me how to view my wishlist from my music library. I restarted my computer, but that didn't work either. I'm obviously missing some

  • BT Mail is Poor/Unfit for purpose and other issues

    Having been migrated to BT Mail I was dismayed at the considerable increase in spam received in my account.  Taken a while but I now realise why.............BT Mail has not been adding to my blocked sender list.  It says it does, but it does not add

  • Need Guideline on Essbase Error

    Hi, I logged in Essbase by using my Login ID and password successfully but as soon as I clicked on application server I got error which is given below at same time my other friends are both able to connect and work with applications. Error is :- Erro