Importing / Transferring Keyboard Shortcuts into Photoshop CS5

Hello, i am testing out Photoshop 5 and it looks good so far, yet some obstacles are left to solve. For example i wonder how to get the keyboard shortcuts from my old Photoshop (the .kys file) into the PS5? There is no import. I would even manually transfer, but opening the file in a texteditor just shows weird stuff (there was a guy who manually transfered his indesign shortcuts in such a way, but since he used a normal text editor i guess these files are of a different structure)
http://forums.adobe.com/message/2881861#2881861
if anyone knows how to transfer them or has an idea how to manually workaround, i am happy for hints.
thanks
Sofian

It depends on which windows system you have, but for vista and windows 7, probably the best
place to put the kys file is:
C:\Users\Your Name\AppData\Roaming\Adobe\Adobe Photoshop CS5\Presets\Keyboard Shortcuts
Added:
Windows XP:
C:\Documents and Settings\Your Name\Application Data\Adobe\Adobe Photoshop CS5\Presets\Keyboard Shortcuts
MTSTUNER
Message was edited by: MTSTUNER

Similar Messages

  • BUG: Changing text colours within a text block: Keyboard shortcuts problem (Photoshop CS5)

    In earlier versions of Photoshop, I could double click a Paragraph Text to edit it, then select individual words and change their colours using the Ctrl+Backspace and Alt-Backspace keyboard shortcuts (to change them to either Background or Foreground colours).
    In PhotoShop CS5, Alt+Backspace is OK, but Ctrl-Backspace deletes the highlighted word! Not good. I believe this is a bug, can it be fixed to revert to the old behaviour?
    (Photoshop CS5 Extended x64 on Windows 7 x64)

    I fully understand what you're saying, and while I'm all for compatibility, user interface change cannot be accomplished without, well, change.
    Imagine, for example, that thousands of people could have reported that they couldn't delete the prior word with Ctrl-Backspace while using the T tool in Photoshop, while they could with every other application on their systems.  Imagine that none of the users like you reported that they were happy with things the way they already are.
    Perhaps the best approach in a situation like this would have been for Adobe to add a configuration option somewhere to allow individual users to make the choice.  But EVEN THEN there's a push from the Marketing types to simplify the number of choices given to customers, probably because doing so reduces support costs (imagine, for example, someone brainlessly setting it to your flavor of Ctrl-Backspace, then calling support to complain that they can't delete the prior word as they have always been able to do).  There are a lot of requests on this forum that read like "I must have changed a setting somewhere, but I'll be darned if I can find it."
    Microsoft and Adobe have both moved lately in this direction (reducing choices and configurability), reportedly to "reduce the cognitive load" on presumably ever less intelligent users, with ill effects in many cases.  Unfortunately, "you can have it any way you like so long as it's our way" seems to be the way of the future.
    -Noel

  • Importing CS4 Keyboard Shortcuts to CS5

    I've  discovered that you can open your custom keyboard shortcuts xml file in a  text editor, and copy/paste shortcuts into your CS5 keyboard shortcuts  file. Anyone else tried this? Is there an easier way to import all of  your keyboard shortcuts from CS4 to CS5?

    I did some experimentation, and I stand corrected! Apparently my memory was dodgy. In particular:
    My experience is that it basically works fine, though it's been a while.
    I thought we had tested this from CS3 to CS5, but it looks like maybe we only did it from CS5 to CS5.5. Which are a lot more similar.
    (And yes, I did recall people having complaints about it, but my experience disagreed...)
    Indeed, you have some problems with CS4 to CS5, but they are not subtle. At least, initially, I was getting a dialog box informing me that there were defined shortcuts in the shortcut set that were invalid (Somewhere along the way that stopped happening, which is Interesting, but probably not relevant).
    Anyhow, I certainly don't disagree that pasting the XML differences is the better way to go -- I said as much in post #13.
    But by way of recompense, here are a pair of scripts to make it easier.
    Both require you to create a special shortcut set called "defaults" (i.e. defaults.indk) that they use as a baseline for differences. For a variety of reasons, it is insufficient for the script to use the Default.indk file in the application directory. Both scripts pop up an error if you have not done this, and tell you how to do it.
    The first one, extractShortcuts.jsx, prompts you to select a shortcut file to extract from, compares it against the default shortcut set, and outputs and differences to a file on the Desktop, extracted.xml. Run this in CS4.
    The second one, importShortcuts.jsx, prompts you to select the extracted.xml file from previous, asks you for the name of the new shortcut set, and then merges the two. It merges them in a fairly stupid way (just plain appending just before the end), but it's probably sufficient.
    So here we go, exportShortcuts.jsx:
    #target InDesign
    (function() {
         var appdir = app.filePath,
              prefs, shortcuts,
              i, s,
              defaults, readcuts,
              defxml, readxml,
              e, ea, action, context, string,
              defaultsByAction, d;
         var includes = $.includePath.split(";");
         for (i=0; i<includes.length; i++) {
              s = includes[i];
              if (s.match("Preferences") && s.match(/Scripts$/)) {
                   prefs = new File(s).parent;
                   break;
         if (!prefs) {
              alert("Could not find User Preferences directory");
              exit(1);
         // $.writeln(prefs.fsName);
         shortcuts = prefs.getFiles("InDesign Shortcut Sets")[0];
         defaults = shortcuts.getFiles("defaults.indk")[0];
         if (!defaults) {
              alert(
         'The script requires a special shortcut set called "defaults" to exist.\n'+
         'The app-folder Defaults.indk is NOT sufficient. Please go to '+
         'Edit > Keyboard Shortcuts, and select the the [Default] shortcut set,'+
         '  modify it in a trivial way (for instance, assign F1 to About InDesign),'+
         ' name the new set "defaults", remove the modification, and save the set.'+
         ' Then re-run this script.');
              exit(1);
         readcuts = shortcuts.openDlg("Select an INDK file to extract shortcuts from.","*.indk");
         writecuts = new File(Folder.desktop.fullName+"/extracted.xml");
         defaults.open("r");
         defxml = new XML(defaults.read());
         defaults.close();
         readcuts.open("r");
         readxml = new XML(readcuts.read());
         readcuts.close();
         writecuts.open("w");
         writecuts.writeln("<shortcut-sets>"); // hack
         defaultsByAction = {};
         for (i=0; i<defxml.shortcut.length(); i++) {
              e = defxml.shortcut[i];
              ea = e.elements()[0];
              if (ea.name() != "action-id") {
                   alert("Parse failure on element "+ea);
                   exit(1);
              action = ea.attributes();
              context = e.context[0];
              string = e.string[0];
              defaultsByAction[action] = { context: context, string: string };
         for (i=0; i<readxml.shortcut.length(); i++) {
              e = readxml.shortcut[i];
              ea = e.elements()[0];
              if (ea.name() != "action-id") {
                   alert("Parse failure on element "+ea);
                   exit(1);
              action = ea.attributes();
              context = e.context[0];
              string = e.string[0];
              d = defaultsByAction[action];
              if (!d ||
                   d.context != context ||
                   d.string != string) {
                   writecuts.writeln(e);
         writecuts.writeln("</shortcut-sets>"); // matching hack
         writecuts.close();
    And its mating half, importShortcuts.jsx:
    #target InDesign
    (function() {
        var appdir = app.filePath,
            prefs, shortcuts,
            i, s,
            defaults, readcuts,
            writename, writecuts,
            defxml, readxml,
            e, ea, action, context, string,
            defaultsByAction, d;
        var includes = $.includePath.split(";");
        for (i=0; i<includes.length; i++) {
            s = includes[i];
            if (s.match("Preferences") && s.match(/Scripts$/)) {
                prefs = new File(s).parent;
                break;
        if (!prefs) {
            alert("Could not find User Preferences directory");
            exit(1);
        // $.writeln(prefs.fsName);
        shortcuts = prefs.getFiles("InDesign Shortcut Sets")[0];
        defaults = shortcuts.getFiles("defaults.indk")[0];
        if (!defaults) {
            alert(
        'The script requires a special shortcut set called "defaults" to exist.\n'+
        'The app-folder Defaults.indk is NOT sufficient. Please go to '+
        'Edit > Keyboard Shortcuts, and select the the [Default] shortcut set,'+
        '  modify it in a trivial way (for instance, assign F1 to About InDesign),'+
        ' name the new set "defaults", remove the modification, and save the set.'+
        ' Then re-run this script.');
            return 1;
        readcuts = Folder.desktop.openDlg("Select an XML file to import shortcuts from","*.xml");
        writename  = prompt("Choose a name for the new shortcut set. One word, no spaces, please.",
        "new");
        writecuts = new File(shortcuts+"/"+writename+".indk");
        defaults.open("r");
        defxml = new XML(defaults.read());
        defaults.close();
        readcuts.open("r");
        readxml = new XML(readcuts.read());
        readcuts.close();
        defxml.appendChild(readxml.elements());
        writecuts.open("w");
        writecuts.write(defxml);
        writecuts.close();
    These are written on a Mac. I suppose there's they might not work perfectly under Windows if the logic to find the user's keyboard shortcuts directory doesn't work.
    As always, install scripts by saving each script as a plain text file (in TextEdit or Notepad) and following directions at, e.g., How to Install InDesign Scripts.
    Good night.

  • How can i import my scanner into Photoshop CS5?

    Hi.
    I have just installed Photoshop CS5 for Windows. I went to import my scanner (Epson Lide 500F) and it's not showing up.
    I have reinstalled it, but it still doesn't show up.
    Do i need to save it into a particular PS file? At the moment it's going into the Programmes file.
    Thank you

    Photoshop CS5 doesn't ship with a TWAIN scanner interface installed, because it sometimes causes problems due to buggy drivers.  It does have a WIA scanner capability; that your scanner does not show up may mean that the drivers for that particular model are not being actively updated by the manufacturer of the scanner.
    You can install the optional Twain plug-in into Photoshop CS5 32 bit only, which may get you the functionality you need:
    http://kb2.adobe.com/cps/405/kb405072.html
    Failing all of the above, you may need to get a new scanner.  I have had to buy three myself over the history of Photoshop releases since the '90s simply because of cessation of support.  It is the way it is.
    Hope this helps.
    -Noel

  • Transferring keyboard shortcuts between Mac and Windows

    I need to migrate users from Mac (CS 5.5) to Windows 7 (CS 6). I have tried to transfer a user's custom keyboard shortcut set by copying the .indk file to the appropriate folder on the PC, and although it shows up in the list, when I try to select the set I get an error saying it is in the wrong format or the file could be damaged. Is there a way of transferring keyboard shortcuts between Mac and Windows?

    Shortcut sets seem to be human-readable text files, so you could try making a copy and doing some editing, changing cmd to ctrl and opt to alt, and change the platform value in the first line to "win" though I can't make any promise it will work.
    There are also some known problems trying to migrate legacy sets into newer versions of ID since CS5, I think.

  • How can I process a Sony A7 RAW file into Photoshop CS5.

    How can I process a Sony A7 RAW file into Photoshop CS5.  I tried the file DNG converter 8.3, but it did not work.  I was able to download it, but upon reading the memory chip from Photoshop CS5, it reads the jpg files fine, but not the RAW files.  I thought the DNG converter 8.3 was the right file, but apparently it is not.  Perhaps I need to do something in Photoshop CS5 to initiate it, or place it in a particular directory.. Please help.

    First of all, you should have used the Adobe DNG Converter 8.6, not an old, obsolete version.  Always use the very latest version.  8.3 was simply the first ACR version to support your camera model, that's all.
    Note that the DNG Converter works only on folders, not on individual raw files.  Put all your Sony raw files in a folder and run the Converter on that folder containing the raw files.
    I have absolutely no clue as to what on Earth you mean by : "upon reading the memory chip from Photoshop CS5".
    You also need to make sure that CS5 is fully updated.  You cannot rely on the highly and notoriously unreliable Adobe auto updater to tell whether you have the latest update installed or not.
    I still have no idea what platform you are on, Mac or Windows. Please read the following for next time:
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them, etc.,
    someone may be able to help you (not necessarily this poster).
    A screen shot could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • How do I install a plug-in module into photoshop CS5 for a Sony Digital Photo PrinterUP-CR10L?

    I am trying to install a borders module for the Sony Digital Photo Printer UP-CR10L into photoshop CS5. I have copied the plug-in into the program file for Adobe plug-ins but it is not coming up in photoshop. What am I doing wrong?
    Thanks for your help.
    Sherri

    Hello imagesbysherri,
    Our Sony Professional Product team would be better equipped to assist you with this. You can find them on Facebook at www.facebook.com/SonyProUSA. I hope this helps.
    Best regards,
    Farley

  • Defining keyboard shortcut in Photoshop CC not working (OSX)

    Hi,
    I face a strange problem when trying to redefine a keyboard shortcut on Photoshop CC or CS6 on an IMac 2013 running the latest version od OSX.
    a --> A
    ù --> Ù
    Every time I type a key it's the uppercase version of the letter that is taken.
    If I go for example on Text tool to put some text in images it's ok.
    It only happens in the dialog box to define keyboard shortcut.
    Note that same version od CC and CS6 works correctly on my macbook Air running also the latest OSX.
    Any idea where the problem could come or been solved ?

    Turn off the ALL CAPS option in the character palette that you forgot about turning on...

  • Keyboard Shortcuts crashes inDesign cs5

    Everytime I go to edit> keyboard shortcuts on indesign cs5, my cursor starts spinning...and spinning... and spinning....never stops and I just have to kill it through task manager!
    Anyone know how to fix this??
    Thanks

    mamatzav wrote:
    ..in fact, me and all my co-workers are getting the same error on all our computers!
    That sounds like a conflict of some sort with a plugin or other software running on all the computers. Mac or PC? Any non-Adobe plugins, including a font auto-activation plugin from a font manager?

  • I'm trying to install the Camera Raw plug-in into Photoshop CS5 but it keeps failing

    Hi - I'm trying to install Camera Raw plug-in into Photoshop CS5 but it keeps failing - I don't keep any reasons at all. The product is registered - please help!

    Which version of Camera Raw? Which camera?
    Familiarize yourself with these two tables
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    They tell you which version of Camera Raw is required to support your camera. The also tell you which version of Camera Raw is compatible with your CS5 (up to version 6.7 only).
    It may be that the version of Camera Raw you need is not compatible with CS5.

  • Can't use the keyboard shortcuts in Photoshop CS6 when updating Mavericks

    Can't use the keyboard shortcuts in Photoshop CS6 when updating Mavericks

    Thanks everyone. What worked for me was a version of the suggestions above. I had the problem with the ≠ character appearing in all my Photoshop CS6 keyboard shortcuts and rendering them largely unusable. However, I don't have any other keyboards besides US English enabled on my Mac. I do have Spell Catcher installed, which works through the keyboard input method. So, I switched from Spell Catcher back to English (with the US flag), launched Photoshop and presto, my keyboard shortcuts were restored, absent that obnoxious ≠ symbol. Once in Photoshop, if I reselect Spell Catcher, the ≠ symbol returns so I have to run Photoshop without the help of Spell Catcher - or forego the use of keyboard shortcuts while it's on. Since the developer of Spell Catcher passed away last year there will be no more updates to the otherwise very useful utility. Apparently this keyboard shortcut problem in the various guises reported here is linked to some element of the OS X input method in Mavericks, as Photoshop seems to manifest the issue in relation to one specific input source or another. This is the first application in my experience to have a problem with Spell Catcher in OS X 10.9. So I will continue to use it, except in Photoshop. Spell Catcher was never updated for Mountain Lion or Mavericks so people like me will have to use it "at our own risk" as the saying goes. Be that as it may, it does appear to be a bug in Photoshop that's at the root of this matter as different people have somewhat different problems with the OS X input method - not that I expect either Adobe or Apple to do anything about it.

  • Importing Encore CS6 menus into Photoshop CC

    So, I'm faithfully cruising the web and the forums looking for answers to this question, and that is: "How do I import an Encore menu into Photoshop now that the Dynamic link functionality no longer works with Encore CS6 and any of the CC suite. I'm working mostly with Encore CS6, PProCC, AuditionCC, and learning as I go." Do the menus exist as an "asset" file somewhere that would allow me to get it into Photoshop? Thanks for the help! Any tips greatly appreciated. ~Bond

    In Encore, add the menu to the project. Then right click and "edit in photoshop." This is part of your learning curve, even if you eventually want to create them from scratch.
    After saving the revised menu in PS, back in Encore, use "Save Menu as File" to save it whereever you want.
    The "Save as Template" is only different if you have a motion asset as part of the menu.
    Yes, you can simple open an Encore menu in PS by finding them in the Program Files/Adobe/Encore CS6/Library, but you may inadvertently change them. Copy one to a different directory and play there.
    The advantage of edit in PS is that Encore will help you avoid changes that will mess Encore up later.

  • Installing Mask Pro into Photoshop CS5

    I am having difficultly installing OnOne plug-ins (Mask Pro 4, and the free versions of Photoframe and Perfect Effects) into Photoshop CS5.  The OnOne site help gives an updated installer for Mask Pro 4, and says to first remove the old one.  How do I uninstall it?  What is the trick to installing the correct one?

    My question was sent on the the PS forum and I received some helpful advice there and from the vendor's tech support.
    Date: Sun, 20 May 2012 20:48:26 -0600
    From: [email protected]
    To: [email protected]
    Subject: installing Mask Pro into Photoshop CS5
        Re: installing Mask Pro into Photoshop CS5
        created by Mylenium in Downloading, Installing, Setting Up - View the full discussion
    Ask such questions on the vendor's forums/ support sites or at least in the PS forums. Mylenium
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4424620#4424620
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4424620#4424620. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • When i import my AutoCad PDF into photoshop my lines and text become blurry. How do i fix this

    When i import my AutoCad PDF into photoshop my lines and text become blurry. How do i fix this?
    Is it resizing as I import it  or maybe a printer thing?

    It is rasterizing the PDF at the resolution you tell it to, unless it's an image only PDF - then the image will be opened as-is.

  • How to import keyboard shortcuts into Flash 8 Pro?

    Recently i upgraded my computer to Windows XP, so backed
    everything up, reformatted and reinstall. The usual.
    One thing i use very often in Flash is my own custom keyboard
    shortcuts, which i found handy that you can export them.... however
    a huge problem i just came across when reinstalling everything and
    getting back into using Flash... I CANT IMPORT KEYBOARD SHORTCUTS?!
    I cant seem to find this option anywhere, which is incredibly
    annoying as you would expect along with a "Export set as HTML"
    option for exporting your keyboard shortcuts.... but an option to
    simply import them is nowhere to be found! I cant even find a
    folder that i can put the html file i created with my keyboard
    shortcuts.... Tried putting it everywhere in the Flash 8
    directories.... and still doesnt show up.
    Hell, photoshop isnt this confusing, just drop the file in
    the Presets/Keyboard Shortcuts folder, and you're done! I dont see
    this anywhere for Flash... even in the Local Settings/Application
    Data folder where it STORES the shortcuts in its own WFX format!
    Too much of a pain remembering all the key configs i had
    setup... only option is to change em as i go along i guess, but
    there HAS to be an easier way to do this!
    Any idea?
    *Edit* Ok, now i just realized my mistake... having seen
    where the shortcuts are saved, i didnt think of looking for them
    there earlier... so i didnt back that up. Arg!

    if no shortcut works, try resetting your flash pro preferences:
    Hold down Shift+Ctrl+Alt (Win) or Shift+Command+Option (Mac) when starting flash pro.
    for more info:
    http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html

Maybe you are looking for

  • Judder in flash video playback

    I'm having this weird random judder issue when viewing video playback using the flash player (e.g. youtube).  The judder is very noticeable on 2d scrolling videos such as this http://www.youtube.com/watch?v=VAdHJYUjeVo&feature=g-all-u#t=10m40s.  I ha

  • PDF printing errors with InDesign CS4 docs

    I've discovered somewhat belatedly that since upgrading from CS3 to CS4, every pdf I have created in InDesign (a dozen or more) won't print. After a general error message, "the document could not be printed," I get one or both of these messages: "the

  • Hyper-V Role deployement with MDT2013 on a Server 2012R2 Trial Version

    Hello,  when i deploy a custom image that i add the roles install Hyper-V, everything works fine, added the SkipRoles=Yes,  and the role Hyper-V is installed at the end of my new server 2012R2 Trial version, HOWEVER, there's no icon that appears on t

  • Delete certain pages from spooljob

    Hi, how can we delete certain pages from a spooljob? Like delete page 4, 8, 13, or 25. Thanks in advance.

  • Cover flow and "enhanced interface" not working on iPod

    I have an 80gb iPod classic video and it does not have the cover flow feature or "enhanced interface". I have updated the iPod software to version 1.2.3. Thoughts?