Keyboard Shortcuts for opening applications

I was just curious if it was possible to be able to set up a keyboard shortkey that would enable you to launch your applications. Like Command+1 to open up safari. etc. Wanted to know if that was possible?

Time and motion studies in terms of Gilbreth‘s therbligs do not favor your approach. The keyboard lies in the heart of the area of minimall motion requirements. The mouse requires more movement to accomplish the same task. It’s all in what’s comfortable with the user, regardless of efficiency, or what the user’s bent may be for finding other ways. Antagonistic responses are oxymoronic in terms of the definition of “help”: verb sap.
Message was edited by: alibi . . . I needed to get around the program’s ill informed decency standards. “Bent” is a poor substitute for l*u*s*t.

Similar Messages

  • Need to assign keyboard shortcuts to open applications!

    How can I assign keyboard shortcuts to open applications such as mail, safari, iphoto, fcp, shake and etc...
    Thanks in advance,
    Zia

    It's a bit confusing, but you cannot assign a keyboard short-cut to launch an app. That window is for assigning a keyboard shortcut to an EXISTING menu command in the app you selected, if that menu command does not have a keyboard shortcut already.
    So if you select System Preference as the app, and enter Menu Title of "About System Preferences" and enter Opt-Cmd-A as the shortcut, once you close and reopen System Preferences, Opt-Cmd-A will open the About System Preferences window, which is an existing command under the File menu that previously did not have a keyboard shortcut.
    You may be able to do what you want with a macro program like Quickeys.

  • Is there a keyboard shortcut for Opening the Channels Panel?

    I've googled, searched discussions, and tried recording actions but haven't found the solution.
    What I'd like is a simple keyboard shortcut to open the Channels panel.
    That's it.
    I can create and run actions that create, delete, or move channels; use the menu or channels tab to open it -- but I can't seem to find a way to use a keystroke combination to open the channels panel like you can do for the layers (F7) or actions (F9) panels.
    Anyone have an idea?
    Thanks!
    -Bonnie

    Thank you!
    Sometimes things are just simply right in front of you without being seen.
    The solution was spot on. I'd somehow not 'seen' the "Application Menu" drop-down in the keyboard shortcuts dialog box.
    Now back to post-processing!
    Thanks again.
    - Bonnie

  • Can you create keyboard shortcuts to open applications?

    Hi everyone,
    I have been trying to create some keyboard shortcuts to open individual applications but they haven't been working. For example, to open up iTunes, I assigned Command+i. But I'm starting to think this isn't possible in OS X. Is this true? Any suggestions on how to accomplish this?
    Thanks,
    Dustin

    The Apple Help for Keyboard Shortcuts in "System Preferences" (the Question Mark "?" down at the bottom) says the following: "Note: You can create keyboard shortcuts only for existing menu commands. You cannot define keyboard shortcuts for general purpose tasks such as opening an application or switching between applications."
    I use a program called "Quicksilver" from blacktree.com . It is not easy to get used to, but it is quite powerful. To open a program (once Quicksilver is installed properly), you can either set a keyboard shortcut such as "Control-i" (or whatever you want), or use their universal opener "Control-space" and type the first letter or two of the application you want to open and then hit or type open.
    My favorite feature of Quicksilver so far is the ability to recover easily any number of previous copies to your clipboard. How many times have I copied something and then before pasting it copied something else by mistake and lost the first thing I copied?!? Quicksilver lets me hit "Control-space" and then open a clipboard history window and scroll down to whatever I want to paste (I have it set for 100 items, pretty excessive, I know!). Cheers!

  • Disable Keyboard Shortcut for Open Adobe Bridge

    Is there a way to disable the keyboard shortcut which opens Adobe Bridge from Illustrator? Often when I'm working quickly I accidentally hit this (option command o) instead of (shift command o) to outline type. It halts everything to open Bridge, which I never use, and drives me crazy. Is there any way to disable this command?
    Any help would be greatly approciated!!

    Go to Edit > Keyboard Shortcuts > Menu Commands > File and remove or modify the default shortcut for Bridge.

  • Keyboard shortcut for opening mail messages

    i'd like to be able to open email messages using a keyboard shortcut. i suspect i'm being thick, but I can't seem to find a way to do that. (i tried the keyboard shortcut function in system preferences, but because there is no "open" menu command, I couldn't create a shortcut.) Much obliged for any help.
      Mac OS X (10.4.8)  

    I too would be interested in a keyboard shortcut to open new email messages. Do any of you Mail pros have an idea to help us out with this?
    Thanks!

  • How to set a keyboard shortcut for open with VLC player

    Hey everyone!
    I have reffered the earlier discussion upon creating a shortcut for the open with function and the below is the correct answer for it by using applescript editor submitted by Barney. However, I couldn't get past the 1st paragraph. It all just went over my head. Especially the "open (thefilelist) " part. Which filelist is being referred to here? All I want is a shortcut for opening files with .avi, .mpeg, and .3gp exts. with VLC player. Please help me out by providing the exact stuff I need to paste in the applescript.
    Thanks
    Ok, this one works both on the finder selection and as a droplet:
    property htmlList : {"htm", "html"}
    property htmleditor : "TextWrangler"
    property textList : {"txt", "text"}
    property texteditor : "TextEdit"
    --property myappextlist: {"ext1","ext2","ext3"}
    -- property myappsname: "myAppName" on run
    tell application "Finder"
    set the fileList to the selection
    repeat with aFile in fileList
    set theFile to aFile as string
    my myOpen(theFile)
    end repeat
    end tell
    end run on open (thefileList)
    repeat with i from 1 to number of items in thefileList
    set this_item to item i of thefileList
    my myOpen(this_item)
    end repeat
    end open on myOpen(aFileAlias)
    set theItemInfo to info for (alias aFileAlias)
    if not folder of theItemInfo then
    set theExtension to name extension of theItemInfo
    if theExtension is in htmlList then
    tell application htmleditor
    open aFileAlias
    activate
    end tell
    end if
    if theExtension is in textList then
    tell application texteditor
    open aFileAlias
    activate
    end tell
    end if
    -- if theExtension is in myappextlist then
    -- tell application myAppName
    -- open this_item
    -- activate
    -- end tell
    -- end if
    end if end myOpen

    Luds.R wrote:
    I have reffered the earlier discussion
    I have the feeling of dropping in in the middle of the conversation.
    Anyway, try this
    --script begins
    property myVLC : "/Applications/VLC/VLC.app"
    property myTypes : {"avi", "mpeg", "mpg", "3gp"}
    on run
              my vlcTest(myVLC)
              tell application "Finder" to set fileList to selection
              my vlcOpen(fileList)
    end run
    on open fileList
              my vlcTest(myVLC)
              my vlcOpen(fileList)
    end open
    on vlcTest(myVLC)
              try
      POSIX file myVLC as alias
              on error
                        display dialog "Sorry, could not locate VLC. Please add the correct POSIX path to the script." buttons {"Cancel"} default button 1
              end try
    end vlcTest
    on vlcOpen(fileList)
              tell application "Finder"
                        repeat with i in fileList
                                  if name extension of i is in myTypes then open i using (POSIX file myVLC)
                        end repeat
              end tell
    end vlcOpen
    --script ends

  • Can I create a keyboard shortcut for opening a document in a specific program?

    Hi there,
    I'm getting into html scripting and javascript programming. The files I'm working with are .html and .js. When you first click on these files they open in safari which I like, but I don't like having to right click and select "open in textmate" can I create a shortcut so I can just select the .html and .js files and hit a shortcut to pull up in an alternate program?

    Not only is this very possible, it's also very easy. You can do this not just for Quark but for any application in OS X. To accomplish what you want, do the following:
    * Firstly, quit QuarkXPress completely. The rest of the steps won't work if it is still running.
    * Go to the Apple menu and select System Preferences.
    * Click the Keyboard & Mouse System Preference Pane
    * Click Keyboard Shortcuts
    * Click the + button to add a new shortcut.
    * Select QuarkXPress as the application.
    * In the Menu Title field type "Place Name" exactly like that but without the quotes.
    * Click inside the Shortcut field and type the key combination you want to use for this shortcut. I suggest using Command + one of the F keys, like Command+F1.
    * Click Add.
    * Close System Preferences
    * Run Quark, open a document, and try it out!
    Robert

  • Shortcuts for opening Applications

    I have tried to set, for instance, F1 to open Word, but it doesn't work. The way I have tried is to open system Preferences, then Keyboard & mouse, then Keyboard Shortcuts, then +, then select an application. I've tried entering "Open" and "Open Microsoft Word" under "Menu Title," then setting the shortcut, to no avail. I'd like to set shortcuts to open several different apps. Can this be done?

    Will Spotlight do? Command-space, type word, press Enter. Spotlight is how I launch any app that is not already in my Dock. It's much faster than navigating through Finder windows with a mouse.
    Otherwise, you can use a program like Spark to set F keys to open applications.

  • Is there a PC-Style Keyboard Shortcut for Opening the CD ROM Draw?

    Hello
    I was trying to use a USB PC-Syle keyboard with my G3 Blue & White, and was wondering if there was a Keyboard Shortcut on the keys to open the CD ROM draw?
    It apparently won't open manually .... and of course if it were an Apple Keyboard, then it would naturally have a key for that function.
    Thank you
    Mike

    Hi, Mike -
    OS 9 does not have such a key, per se (I think F12 works only in OSX). The button on the front of the drive should work whenever the tray is empty; if there is a disk in the drive, either drag the disk to the Trash or select it and use Command-Y (Put Away in the File menu).
    You can add a hot-key fairly easily.
    • One way is to locate the Eject Extras folder which may be on the hard drive somewhere; if not, you can download it from here -
    Eject Extras
    You can use the Eject applet contained in that folder by assigning it to one of the FKeys via the FKey page inn the Keyboard control panel.
    The downside of this is that it will control only the built-in optical drive.
    • You can also use a utility such as EjectDisk, which allows for the setting of individual keyboard key-combos for each removable-media drive.

  • Keyboard shortcuts for APEX applications

    Hi,
    I want to add shortcut keys to my APEX application. I have already allowed users to show report, save and delete data using F-keys – I made it with javascript and doSubmit(request) function, invoking pl/sql procedure on F-key press.
    Unforutnatelly I don’t know how to invoke something else than pl/sql procedure or request. In my application I have several buttons, most of them are connected to procedures but one, that should have shortcut, invokes JS function. The problem is that I want to have one shortcut function for whole application and put it into library. So that procedures on each page has the same request, and it works very well, but I can’t simulate this way clicking on button with JS. JS invoking by this button is different for each page so I can’t just replace doSubmit() with it.
    Do you know any way to simulate clicking on the button or create shortcut for it? Button is displayed as <A> HREF with <IMG>.
    Regards,
    Przemek

    Time and motion studies in terms of Gilbreth‘s therbligs do not favor your approach. The keyboard lies in the heart of the area of minimall motion requirements. The mouse requires more movement to accomplish the same task. It’s all in what’s comfortable with the user, regardless of efficiency, or what the user’s bent may be for finding other ways. Antagonistic responses are oxymoronic in terms of the definition of “help”: verb sap.
    Message was edited by: alibi . . . I needed to get around the program’s ill informed decency standards. “Bent” is a poor substitute for l*u*s*t.

  • Assign keyboard shortcut to open applications?

    Can I assign keyboards shortcuts (like ctrlshift0 or applealt1) to run applications?
    Thanks in advance.

    you need a 3rd party application launcher for that. Google Quicksilver, Butler, iKeys or Quickeys.

  • Keyboard shortcut for opening the spelling suggestions menu?

    On windows one can use the keyboard button for a right-click in order to open the spelling pop up menu in programs such as Word.
    Is there any similar way to open the spelling suggestions for the global OS X spell checking via the keyboard?
    Thanks!

    Hi,
    You posted this a few months ago so may already have found the answer. If you press command shift ; all spelling suggestions will come up for you.

  • Keyboard shortcut for Control+F2, F, Enter

    Hello,
    I am trying to create a keyboard shortcut that would be available to all Applications deliveres the same result as these keystrokes:
    1. Control + F2 (move focus to menu bar)
    2. F (moves focus to the File menu bar menu)
    3. Enter or down arrow (Displays the File menu)
    WHat I am looking to do is create the Windows equivalent of alt+F (displays the contents of the File menu)
    I have created a System Preferences Keyboard Shortcut for All Applications that has "File" as the description and ^F has the Shortcut...this doesn't work. Is there a way to assign a shortcut to display the menu bar File menu in its open state?

    ReidRik_Von
    Here's one approach to try...
    1) Open System Preferences > Universal Access and make sure "Enable access for assistive devices" is checked.
    2) Highlight and copy the block of code below and paste it into your AppleScript Script Editor (located inside your Applications > AppleScript folder):
    *tell application "System Events"*
    *keystroke tab using command down*
    *set theApp to name of (first process whose frontmost is true)*
    *tell process theApp*
    *click menu bar item "File" of menu bar 1*
    *end tell*
    *end tell*
    Choose Save As from the Script Editor's File menu, File Format: application, leaving the Options unchecked. Give the script application a name (Display File Menu, e.g.), and press Save.
    3) To assign a keyboard shortcut, you might consider downloading and installing the excellent Spark program.
    From Spark's File menu, set up a New Hot Key to launch an Application, in this case the application being your newly created AppleScript application. When the new System HotKey sheet drops down, hit the Choose button and navigate to the location where your new AppleScript application was saved. Select it and press Open. Click inside the editable Shortcut field to make it active, and on your keyboard keystroke Option (alt), plus the letter "f." Then press Create.
    Start the Spark Daemon by selecting it from the File menu, or by pressing the Stark Spark Daemon button on the Spark panel itself, and then quit Spark altogether. The Spark Daemon and your enabled keyboard shortcut will run as a hidden process, using a minimal amount of RAM.
    It worked for me...
    Good luck!
    Regards, Andrew99

  • Keyboard shortcut for context menu

    Hello all. I recently got a MacBook and it's the first Mac I've ever had. I'm a keyboard shortcut guy when I can be and one thing that's stumped me is using the keyboard to open up the context menu.
    Does anybody know a keyboard shortcut for opening the context menu (ie Ctrl + mouse Click)?
    If there isn't one, I would be happy to add a custom keyboard shortcut for it in the System Preferences. I've tried to do so but I'm doing something wrong because it isn't working. Here's what I've tried specifically:
    1. For "All Applications" add Ctrl+Space for the Menu Title "Show Context Menu"
    2. For "All Applications" add Ctrl+Space for the Menu Title "Open Context Menu"
    Does anybody know the exact Menu Title for the context menu?
    Help is much appreciated!

    The Keyboard Shortcuts are for menu items, not macro creation. What you want to do requires a third-party utility for programming keyboard macros such as iKey, QuickSilver, etc. You'll find these at VersionTracker or MacUpdate.

Maybe you are looking for

  • Dual Booting with second hard drive

    Okay so I just ordered an enclosure to replace my optical drive with my old HDD. I have already put an SSD where the old HDD was and I could really use some more storage space for video projects. Also, I want to dual boot Ubuntu on this machine. I am

  • WAR cookie example not working. Please help!

    Hi,           The cookie example worked fine if I put everything unpackaged under the           public_html/cookie directory. However, when I jarred this directory as           cookie.war and registered it with WLS, I got this exception when trying  

  • Web Pl/Sql with Jdeveloper(903)

    hi all i am using jdeveloper to develop some pages build with web pl/sql but when i try to run it from jdeveloper it fails (the database is 9.0.1)and gives the error Executing PL/SQL: CALL SCOTT."JDEV_TMP_PROC_1"() ORA-06502: PL/SQL: numeric or value

  • Is this good usage? i just want to make sure

    i just want to make sure if this is good usage or avreage usage? i do want to note that i have been using my iphone none stop since i unplugged it. these are the apps ive been on messages < alot of this Kik < alot of this aswell not much facebook < s

  • Error: pre-defined filters are no longer available in the universe

    Hi All, I'm getting following error message while schedule the webi report . "Some pre-defined filters are no longer available in the universe. See your Business Objects administrator. (Error: WIS 00003) ". I have migrated the universe and reports fr