Keyboard shortcut for folder

I have a new Apple Wireless keyboard. I would like to assign a keyboard command to open a specific folder (that I use all the time) but cannot seem to do this through System Preferences. Any hints would be appreciated.
Innes

innesk, welcome to Apple Discussions.
You posted your question in the Older Hardware Products (pre-2000) forum, however, your profile shows you are using Leopard 10.5. You should post your question in the appropriate Leopard forum at http://discussions.apple.com/category.jspa?categoryID=235 When you have a hardware question, post it in the iMac forum for your model iMac.
I have asked the forum host to move your post to the appropriate forum.
 Cheers, Tom

Similar Messages

  • Keyboard shortcut for the Document Folder in file open/save dialog

    Does anyone know if there exists a keyboard shortcut for Document Folder in the File Save/Open Dialog? <command><shift>O works in the Finder. I tried variations of that in the dialog and didn't find any. <command>D takes you to the desktop. I tried other variations surrounding that to get to the Document Folder and didn't find any.
    Anyone? Bueller?

    There isn't.
    (56302)

  • How do I setup a keyboard shortcut for an item in the Services menu?

    In every Application, under the application menu is a "Services" folder. I would like to be able to setup a keyboard shortcut for one of these services (namely Skype).
    I am a heavy user of the "Services > Skype > Call" command and I would love to have a keyboard shortcut for it.
    I went to System Preferences > Keyboard & Mouse > Keyboard Shortcuts, clicked on the plus sign to create a new shortcut (all applications) and entered "Services…Skype…Call" and assigned it to a keyboard command (shift-F1).
    It doesn't work. Any clue as to what I am doing wrong?

    Hi
    Also - have a look at the reply I gave at the link below (sorry - don't know how to insert proper links here).
    May be of interest, maybe not.
    Best,
    D
    http://discussions.apple.com/message.jspa?messageID=7932030#7932030

  • What is the keyboard shortcut for extract page?

    There used to be a series of keyboard shortcuts for page manipulation (and other) - using acrobat 9 till recently. Now new to Acrobat XI Pro (Windows 8.1). I can see the shortcuts for insert & delete page but not for extract page (and other). Am I missing something? The keyboard shortcuts are a must for speed and a healthy right wrist.
    Thank-you for your time.

    There isn't a direct way of doing it, but you can "hack" it using a script. Create a folder-level script with this code:
    app.addMenuItem({cName: "MyExtractPages", cUser: "E&xtract Pages", cParent: "Edit",
        cExec: "app.execMenuItem(\"ExtractPages\");", cEnable: "event.rc = (event.target!=null)"});
    This will add a new menu item to the Edit menu which you could access using the following keyboard shortcut: Alt+E, X

  • 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

  • Setting Keyboard Shortcuts for Services won't work

    I've tried to set Keyboard Shortcuts for Services like "New Terminal Tab from Folder" but it won't work. I even tried it on my friend's machine to no avail.
    Here's where I'm setting it up. And yes, I've turned on the checkbox & set the shortcut I want. I've even tried a few different keyboard shortcuts that are complicated to ensure that it's not competing with something else.
    To note, I'm using TotalFinder but my friend, whose machine I tested this on, doesn't.
    We are both running 10.8.2 on the latest MacBook Pro with Retina Display, 15".

    I have a similar scenario......except my services that I created run one time, and then won't run again. 
    For example, I created a service to open a new blank email message for me to type in.  I assigned Cntl-Opt-Comm-M to this service.  I hit the key sequence and it works the first time.....the mail window pops open. 
    If I then close the mail window that it spawned and do it again, no mail window opens.
    I also did this to create a blank Calendar event and also another one for Reminders. 
    They all run one time and then not again.
    Any ideas?

  • InDesign Keyboard Shortcut for Submenu Item

    I am attempting to make a keyboard shortcut for a particular menu selection in InDesign CS5. Particularly, I want to select an Adobe PDF Preset
    ("PDF/X-1a:2001") from the submenu. However, when I try select this in Keyboard Shortcuts, all I get is "Define" .. which of couse will bring me to the presets window. I want to be able to select a preset and assign a keyboard shortcut (in this case F15).
    Does anyone have suggestions on how this can be done? I tried various ways, but still can't select anything from that submenu.
    Thanks.

    Hey,
    I agree with Cari! Using SHIFT while clicking on PDF preset name would speed up things! On the other hand, you can use scripting to define which export profile to use and choose destination folder. Great thing about the scripts is that you can assign custom shortcuts to them!
    // Set PDF Preset name
    var myPreset = "[PDF/X-1a:2001]";
    // If not using CS5 or later, set this to: false
    var usingCS5 = true;
    /// --- DO NOT EDIT --- ///
    if(app.documents.length)
        doExport();
    else
        alert("No documents opened");
    function doExport(){
        try{app.pdfExportPresets.item(myPreset).name}
        catch(_){
            alert("PDF Preset not found!\nPlease check name and try again!");
            exit();
        var myFile = (function(){
            var setFile = File.saveDialog ("PDF export based on " + myPreset + " ...", "PDF:*.pdf");
            if(setFile != null)
                return setFile;
            else
                return false;
        if(myFile != false){
            if(Boolean(usingCS5))
                app.activeDocument.asynchronousExportFile (ExportFormat.PDF_TYPE, myFile, false, myPreset);
            else
                app.activeDocument.exportFile (ExportFormat.PDF_TYPE, myFile, false, myPreset);
    All you have to set is PDF preset name and you are good to go! Also, you can save this script with different names containing different presets name and assign different shortcuts to every one of them.
    Hope that helps.
    Marijan (tomaxxi)
    http://indisnip.wordpress.com/
    http://inditip.wordpress.com/
    http://twitter.com/tomaxxi

  • Keyboard Shortcuts for Custom Presets

    I have a Custom Preset for Lightroom 3, that exports a copy to a seperate folder, as jpg. The issue is I have to select File, Export with Preset and then my preset to export.Can I create a keyboard shortcut for this?
    Bob

    Bob,
    I think there is a shortcut (Windows anyway) whereby you right-click the images after selecting them in the Grid mode, left-click "Export" then select your preset.  The images are then exported based on the preset without further user intervention.  This might be better than as shortcut key.
    Jeff

  • Need keyboard shortcuts for an old Power Macintosh please

    Hi all
    I’m try to copy 2 folders from the desktop of an old Apple Power Macintosh to a ZIP drive.
    The mouse on the Power Mac doesn't work, so I’ve to use keyboard shortcuts to move the folders.
    My problem is that I can’t find the right keyboard map on the web for a computer about 15 years old, and the OSX keyboard shortcuts don’t work on this computer.
    As far as I can work out the Power mac is before G3 and is a 6000 to 8000 model. If anyone knows the shortcut to find the exact software version, that will be great.
    So could anybody please suggest to me the keyboard shortcuts for the following commands:
    Open ZIP dive folder
    Move back to desktop
    Copy folder on the desktop
    Select ZIP drive folder
    Past the folder from desktop to ZIP drive.
    I can’t find any info on the web, so any suggestions will be greatly appreciated.

    Under Mac OS 8 or later, you can select a file or folder in the current window (or on the desktop if no windows are open) by typing the first few letters of its name. You can also use the arrow keys. I don't remember whether these work in System 7.
    Apple-O opens a selected file or folder. Apple-W closes the current window.
    Apple-C and Apple-V are copy and paste, respectively, but I'm not sure if they'll work for copying files and folders. I'm not sure if there's a keyboard shortcut for moving files and folders.
    If you can find "Script Editor" (it might be in a folder named "Applescript"), you could use it to write a script that will move the folders. Follow these instructions:
    Find and open Script Editor. Apple-F opens the "Find" window.
    In Script Editor, enter the following:
    (Instead of XYZ and ABC, enter the names of the folders you want to copy. And instead of MyZIP, enter the name of the Zip disk.)
    tell application "Finder"
    duplicate folder "XYZ" of desktop to disk "MyZIP"
    duplicate folder "ABC" of desktop to disk "MyZIP"
    end tell
    Press Apple-R. That should copy the folders to the Zip disk.

  • Disabling Keyboard Shortcuts for LDAP Accounts -Workgroup Manager...

    I work in a school and all our students are on LDAP accounts. Recently some of the kids realized that hitting Ctrl-Opt-CMD-8 inverts the screen display. You wouldn't believe the amount of havoc this has created at school, especially when they do it to a kid’s account that doesn't know how to fix it.
    Keyboard and Mouse are NOT one of the items under preferences for either groups or accounts in Workgroup Manager. Does anyone know if there is a way around this, or an alternate way of getting rid of the keyboard shortcuts for Universal Access, for either groups or accounts?
    Thanks
      Mac OS X (10.4.6)  

    Within the Workgroup Manager pane for Preferences, there is an option to manage Universal access. Within that section, there is a tab for 'Options'. You will want to change that management to 'Always' and leave the box for 'Allow Universal Access Shortcuts' UNchecked. This will, in effect, disable the usage of the shortcuts for a User or a selected Group account.
    Hope this helps out!!
    www.Admin660.com

  • How to change keyboard shortcut for cycle through open tabs in PS and AI CC 2014

    I would love to set my own keyboard shortcuts for cycling through open tabs in PS and AI 2014 on OS X. I found out that this can be achieved with ctrl+tab in PS, but I couldn't manage to make any of the suggestions in the forum work for AI. As said, I would like to set a more "standard" shortcut like alt+cmd+arrow-keys for both of the apps. If that shouldn't be possible, does anyone know a shortcut in AI CC 2014?
    Many thanks!
    Amadeus

    Thanks! The shortcut can be set like this in AI, although all key combinations I would want to use are not allowed. Too bad. But anyways, thank you very much for the tip!
    cmd+~ is not an option for me, I guess, since the swiss/german keyboard layout has no dedicated tilde key.
    So, I have a working shortcut in PS (ctrl+tab / of which I still don't know how to change, if possible at all) and thanks to you, I can now set one in AI as well. Unfortunately, I can not set it to be identical as in PS, since the "cmd" key needs to be included in AI's shortcut assignment dialogue, but I guess, this is as good as it gets.

  • How do I generate a list of keyboard shortcuts for any given application

    I want to generate a list of keyboard shortcuts for all of the applications I have on my Mac. I want the list to be a simple text (or rtf) file that I can edit and organize. (By edit, I don't mean change the shortcuts, only the report of them.)
    I was using Key Cue, but it does not let me save the list to a text file.
    I want this for several purposes. One is to have a easy to reference list of shortcuts to learn. Another is to find unused key combinations that I can use for my own keyboard shortcuts that I create with DefaultKeyBinding.dict.
    Note: The program doesn't have to an OS X app. A program that runs from a shell without a GUI is plenty adequate.
    If there is a way to read the keyboard commands from a plist list or other such file, and any of you know the format for these or where I can find them, I can write a Perl script myself to do it.

    Well, the info is stored in...
    /Users/YourUserName/Library/Preferences/com.apple.universalaccess.plist
    PlistPro has a way to convert it to ASCII, but you'll srtill have work to do, as...
    {enabled = 1; key = 20; modifier = 1179648; sybmolichotkey = 28; },
    {enabled = 1; key = 20; modifier = 1441792; sybmolichotkey = 29; },
    {enabled = 1; key = 21; modifier = 1179648; sybmolichotkey = 30; },
    {enabled = 1; key = 21; modifier = 1441792; sybmolichotkey = 31; },
    {enabled = 0; key = 28; modifier = 1572864; sybmolichotkey = 15; },
    {enabled = 0; key = 27; modifier = 1572864; sybmolichotkey = 19; },
    {enabled = 0; key = 24; modifier = 1572864; sybmolichotkey = 17; },
    {enabled = 0; key = 47; modifier = 1835008; sybmolichotkey = 25; },
    {enabled = 0; key = 43; modifier = 1835008; sybmolichotkey = 26; },
    {enabled = 0; key = 28; modifier = 1835008; sybmolichotkey = 21; },
    {enabled = 0; key = 96; modifier = 1048576; sybmolichotkey = 59; },
    {enabled = 1; key = 122; modifier = 262144; sybmolichotkey = 12; },
    {enabled = 0; key = 120; modifier = 262144; sybmolichotkey = 7; },
    {enabled = 0; key = 99; modifier = 262144; sybmolichotkey = 8; },
    {enabled = 0; key = 118; modifier = 262144; sybmolichotkey = 9; },
    {enabled = 0; key = 96; modifier = 262144; sybmolichotkey = 10; },
    {enabled = 0; key = 97; modifier = 262144; sybmolichotkey = 11; },
    {enabled = 1; key = 50; modifier = 1048576; sybmolichotkey = 27; },
    {enabled = 1; key = 98; modifier = 262144; sybmolichotkey = 13; },
    {enabled = 1; key = 50; modifier = 1572864; sybmolichotkey = 51; },
    {enabled = 1; key = 100; modifier = 262144; sybmolichotkey = 57; },
    {enabled = 1; key = 17; modifier = 1572864; sybmolichotkey = 50; },
    {enabled = 1; key = 2; modifier = 1572864; sybmolichotkey = 52; },
    {enabled = 0; key = 105; modifier = 0; sybmolichotkey = 32; },
    {enabled = 0; key = 109; modifier = 0; sybmolichotkey = 33; },
    {enabled = 0; key = 103; modifier = 0; sybmolichotkey = 36; },
    {enabled = 0; key = 109; modifier = 0; sybmolichotkey = 62; },
    {enabled = 0; key = 49; modifier = 1048576; sybmolichotkey = 60; },
    {enabled = 0; key = 49; modifier = 1572864; sybmolichotkey = 61; },
    {enabled = 1; key = 2; modifier = 1310720; sybmolichotkey = 70; },
    {enabled = 1; key = 49; modifier = 1048576; sybmolichotkey = 64; },
    {enabled = 1; key = 49; modifier = 1572864; sybmolichotkey = 65; },
    {enabled = 0; key = 53; modifier = 1048576; sybmolichotkey = 73; },
    {enabled = 1; key = 107; modifier = 0; sybmolichotkey = 53; },
    {enabled = 1; key = 113; modifier = 0; sybmolichotkey = 54; }

  • How do I change the keyboard shortcut for Cycle through open documents in PS CC for Mac?

    Sorry to bug the community with such a seemingly inconsequential task, but I am seriously tired of using the awkward default keyboard shortcut for cycling through open docs in PS.  I'd like to change it to what I am used in in Chrome, which is Cmd+Option+[left] or {right} arrow keys.  I noticed this is not a command listed in the in keyboard shortcuts, for whatever reason.  Where on Earth can I change this? 
    If it is not possible to do it by default, is there a plug-in or a change to the code that will allow this basic functionality? 
    Thanks again guys and gals!

    As far as I know, you can't. It's "hard wired" in.  Not even Edit > Keyboard Shortcuts is allowed  to change it.
    However I did find this tip:
    Anyway i never found tabs in Adobe application useful, instead i prefer the old school method: simply switch off tabs feature via illustrator/ preferences/ user interface/ open documents as tabs. Then in Mac preferences panel, under keyboard, just search for the “focus on next application window” field (under menu, keyboard and text) and assign a shortcut if the default option doesn't fit you. And there is now you can easily switch between open documents!.
    The best part of this is that it can be used in all mac applications, not only Adobe ones. And remember, if you want this working on Indesign, Photoshop, etc be aware of first switch off the tab features so that the system could “see” multiple documents opened not only one single tabbed document.
    Gene

  • Apple Mail creating a new keyboard shortcut for delete

    In Gmail I can hit the "D" key to delete saves much time. 
    In Apple Mail I have to hit the delete key which is on the right side of the keyboard and my right hand is busy with the track pad scrolling. I want to create a keyboard shortcut for delete something like option D any easy left handed shortcut will work.  Sys pref/keyboard shortcuts/mail doesn't work, Any suggestions?

    Hello!
    I don't know about mouse shortcuts, but you can put a delete button in the top bar of Mail, like so:

  • Keyboard shortcuts for text selection not working in Flash CC

    In the new Code Editor in Flash CC running on Mac OS X, most standard Keyboard Shortcuts for traversing through the text work as expected (as the Operating System works globally) but there is one that doesn't and it's I think the most important one.
    Hitting "OPTION + SHIFT + [right or left arrow keys]" to select words doesn't work. Hitting "OPTION + [right or left arrow keys]" works as expected, moving the cursor to the next word or break point, but adding shift doesn't do the selection.
    I don't understand why this changed since it's a basic OS global shortcuts, and every other program behaves the way it should. Flash CS6 running on the same system behaves fine, but Flash CC doesn't. If you have ever written code, you know that any second that a programmers hand doesn't have to leave the keyboard to search for the mouse is invaluable, and this has forced me to stop using Flash CC and use Flash CS6 to edit my Action Script classes becuase it's unusable otherwise.
    These shortcuts are also not listed in the keyboard shortcuts for the program, so I can't change the default behavior. Does anybody know if there's a way to set it back to the way it was before, or just disable special text shortcuts so that selecting text behaves like any other application in the operating system?
    System Configuration:
    Flash CC
    Mac OSX 10.8.5

    Amy~ Yep the lasso tool was what I verified with another user. 'L' seems to be bound indefinitely to loop through different types of lasso tools and it was annoying them because they just wanted L to be the regular freehand lasso. I removed 'L' from being an option on the polygon lasso and even set it explicitly to SHIFT+L as well as set the lasso tool to a completely different keyboard combo. 'L' still cycled through lassos haha. It needs some fixes.
    fertolg~ At least you have a workaround for now. I'd go nuts if I couldn't use keyboard text selection writing code, oy! You're welcome and if you're all set please mark correct so we can filter unanswered. Good luck!

Maybe you are looking for

  • Help me in  'AR Details ' report shows total open invoices by customer

    hi friends, please  help me in  'AR Details ' report shows total open invoices by customer and PO number over selected time range. any thing related to open invoices please send me as early as possible. Thanks, Regards, Yogesh

  • ITunes on Windows Vista PC can't connect to AirPort Express. PC returns error message -15000

    I'm running PC with Vista and newest update iTunes. I have set up a network through my AirPort Express, and i am streaming music wirelessly from my PC to AirPort. This used to work, but now i get an error message saying that an error occured while co

  • Can't print large images

    Hello, I'm printing a set of large, stiched images. There are thirty-eight images in the set and the first eight went fine. Suddenly I can't print from CS3. I choose print and the print dialog comes up. It is up for a minute or two (normal with the f

  • Waking up a Mac Pro through the network?

    I am using my macpro to share files to a macbook pro. after a period of inactivity, the macpro goes to sleep and I am no longer able to access it from my macbook pro. Is there a way to wake up the mac pro without having to physically touch it? Thanks

  • Unable to get BP address in to PO Bill to abd ship to

    Hi All, I have exported data of BP and the address using DTW. When i am raising PO. i am unable to get the address in ship to & bill to fields on Logistics tab. am i missing any thing. Thanks Mahi.