Copying keyboard shortcuts into CC 2014

I was under the impression that the days of my copying over all my keyboard shortcuts were over.
All my other preferences seemed to have made the jump, but I had to manually copy over the .kys file in finder and restart PS to get them.

I was under the impression that the days of my copying over all my keyboard shortcuts were over.
All my other preferences seemed to have made the jump, but I had to manually copy over the .kys file in finder and restart PS to get them.

Similar Messages

  • 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

  • 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

  • Copy Customized ShortCut into users Desktop - Windows 7

    Hi!
    I have customized a shortcut and a new icon (its in house web application that we want to force the users to use chrome).
    The shortcut is pointing to something like "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" https://www.xyz.com/en/classic/login/login
    How can I copy the .lnk file to desktop of all Windows 7 users, I have placed the .ico file in the shared network folder.
    Thank you.
    David

    davedran wrote:
    > Hi!
    >
    > I have customized a shortcut and a new icon (its in house web
    > application that we want to force the users to use chrome).
    >
    > The shortcut is pointing to something like "C:\Program Files
    > (x86)\Google\Chrome\Application\chrome.exe"
    > https://www.xyz.com/en/classic/login/login
    >
    > How can I copy the .lnk file to desktop of all Windows 7 users, I have
    > placed the .ico file in the shared network folder.
    >
    > Thank you.
    >
    > David
    >
    >
    There are a number of ways, but basically you can just create a shortcut on
    your desktop to upload to the server or to a shared location, then copy that
    ..lnk file down to the folder "${CommonDesktop}" on the workstations.

  • 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 get the Voiceover Keyboard shortcuts to show up in a form in which I can copy

    I have low vision & have been trying to learn to use Voiceover on both my iPhone & my Mac mini for months. Very frustrating.
    1. How can I get the Voiceover keyboard shortcut commans to show up in a form in which I can copy & paste them into a pages document so I can print it out & use for quick reference?? The one that shows up when I press VO +HH won't let me copy & paste it, & it won't show up in the Help section no matter what subject I enter. The help topics shown do not correlate with the topics I'm entering. why is that??
    2. Please make the cursor able to be wider, like in the software program Zoomtext, that I used when I had a PC. The razor-thin cursor (in this text box!) in Pages is impossible for me to see.
    Thank you for any help you can provide.

    http://www.applevis.com/guides/voiceover-keyboard-shortcuts-mac-os-x
    You should be able to copy them from there.

  • Importing keyboard shortcuts from PS CS3 into CS4?

    Is it possible to import keyboard shortcuts from PS CS3 into CS4?
    And how?
    m

    Mmh, you could possibly simply copy over the respective files from your preset directory (Documents and Settings/Matjaz/Application Data/Adobe/Photoshop CS3/Presets/Keyboard Shortcuts). Not sure if it's safe, though. Never tried.
    Mylenium

  • InDesign CC 2014 Keyboard Shortcuts Not Working

    Hello, I just installed and updated to InDesign CC 2014 on my Mac (OS X) and a lot of keyboard shortcuts are now missing. To move your view on the page, one would usually hold the space bar down and drag the hand tool. This no longer works. Also, usually to copy/drag an object, one would hold the option key and drag. This no longer works. Also usually to keep an object inline, one would hold the shift key and drag the object. This no longer works. I need assistance on getting this working again ASAP. Thank you.

    Quit Chrome. Quit Safari. Quit Firefox. Quit any form of web access > Restart InDesign > Open Adobe InDesign first (shortcuts should have returned) > Then open web browser of preference.
    ..still not working?
    Restart MAC / PC > Reopen Adobe InDesign first (short cuts should have returned) > Then open web browser of preference.

  • [SOLVED] Custom Copy & Paste Keyboard Shortcuts in Gnome3

    I'm looking for a way to make custom keyboard shortcuts in for the copy and paste functions. Specifically, I want F1 to be Copy. F2 to be Paste.
    (In the future, I'd love to be able to do more, like Find, Cut, adding in frequently used text phrases via one keyboard combo ... in ANY application.)
    Why? Because I use a different keyboard layout, Dvorak. I'm sure other layouts have similar problems. The Ctrl-C and Ctrl-V are all of a sudden two handed operations. Slows me down. I need a non-mouse (I'm aware of the middle-click option), one handed operation solution.
    There's a solution I found for Windows, AutoHotkey. Lets me do this. No Linux alternative as far as I was able to find. The options in the System Settings for Keyboard shortcuts do not include the Copy, Paste, etc functions. I also tried xclip. Works for copy. Just not paste. I can't get it to paste into any X app. I've used every variation of xclip -o I could. It appears that xclip isn't made for this. Nor do any of the other clipboard-like packages appear to be for it either.
    Any suggestions?
    Last edited by HuckleSmothered (2013-01-15 13:29:06)

    Found a solution!
    xdotool
    Nothing else needed. I just set up custom keyboard shortcuts in the Gnome3 system settings that utilize this command. "xdotool key ctrl+v" will paste. I have that set to F2. "xdotool key ctrl+c" set to F1.
    It can type preset text as well, which I use a lot at work (not so much at home). " xdotool type "Hello world!" "

  • Keyboard shortcuts didn't come across in move from CC to 2014

    Hello, I just upgraded to 2014 and I had a bunch of keyboard shortcuts set up (and sync'ed via CC Cloud) but they haven't come over to 2014. What am I missing?

    Unfortunately you need to transfer those your self.
    I believe that SYNCH has worked for some.
    It did not for me ... so I copy and pasted the file across to the relevant CC8 folder.

  • 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.

  • The keyboard shortcut that turns an exclamation mark into an apostrophe no longer works in iOS 6. How can I restore that shortcut?

    the keyboard shortcut that turns an exclamation mark into an apostrophe no longer works in iOS 6. How can I restore that shortcut?

    Well, I for one really hate when they change this stuff.  They get us used to doing it one way for years and then they change it.  Why?  Really, seriously, truly......WHY?
    In fact, I originally noticed it had changed and then when I'd hit it, I thought it required me to touch both so I ended up with an apostrophe but then also a letter "l".  I just left commas everywhere I went for a while cuz it ticked me off so bad I just rebelled.
    In ios5 it was actually faster because it's the same move and time involved, but without the extra "slide".  So, in essence, Apple went backwards.
    Nice, eh?

  • Keyboard shortcuts not working in Prelude CC 2014.1

    Not sure why but none of my keyboard shortcuts are working in Prelude CC 2014.1
    For example, I can't use the Cmnd + right/left arrow to move forward or backward from one marker to the next. The keyboard shortcut even in the menu is actually greyed out:

    Hi Ninose11,
    See if this thread helps:New Tag feature shortkeys not working
    Thanks,
    Kevin

  • Keyboard shortcut for "Save a Copy" in Acrobat 9 Pro?

    I cannot find a keyboard shortcut for Save a Copy in Acrobat 9.3.2. THere's nothing in the help docs.
    Even more bizarrely, the idiots who designed the GUI assigned the y shortcut on the File menu to both "Modify PDF Portfolio" *AND* "Save a Copy", so hitting Alt + f, y performs only the former not the latter.
    Any ideas or am I SOL?
    Thanks.

    Hi Dan,
    "Save a Copy" is Adobe Reader.
    It is not associated with Acrobat Professional's "File" drop-down.
    fwiw –
    For Acrobat Pro 9; a link to a free downloadable 13 x 19 poster in PDF format (for Windows and Mac) is at:
    http://help.adobe.com/en_US/Acrobat/9.0/Professional/WS58a04a822e3e50102bd615109794195ff-7 aee.w.html
    Be well...

  • I've just found the keyboard shortcut in Garageband for 'copy region' had changed from cmdC to ctrlC. I went to Preferences and clicked Restore Defaults for shortcuts. Now its altC . How can I get it back to the original commands.

    I've just found the keyboard shortcut in Garageband for 'copy region' had changed from cmdC to ctrlC. I went to Preferences and clicked Restore Defaults for shortcuts. Now its altC . How can I get it back to the original commands.

    When I use find file http://www.macupdate.com/app/mac/30073/find-file (which does tend to find files that "Finder" can't), it's not coming up with any other itunes library files that have been modified in the past week, which I know it would have been - unfortunately, I don't have a very recent backup of the hard drive.  It would be a few months old so it wouldn't have the complete library on it....any ideas?  I'm wondering if restarting the computer might help but have been afraid to do so in case it would make it harder to recover anything...I was looking at this thread https://discussions.apple.com/thread/4211589?start=0&tstart=0 in the hopes that it might have a helpful suggestion but it's definitely a different scenario.

Maybe you are looking for

  • Possible to migrate installation w/ SLD to new system using 'tar'/'untar'?

    I have a CRM installation with TREX, that I need to move from one unix system to another (same patch level). As SLD is setup, can I 'tar' the entire installation on the old system, 'untar' the bundle on the new system, and bring the SAP setup back in

  • Error catching in process chains

    Hi experts I need to know if it's possile to catch errors while executing a process chain; actually if one of my process chains fails, it brutally stops without reaching the last process that resets some flags and sends an email to the client. Instea

  • 10.6.8 update: corrupted master 'iMac.icc' colour settings

    Hi – During the lastest update, the master 'imac.icc' profile has become corrupted during the reboot. Now shows a very 'washed out' and high contrast screen. Can I download the iMac replacement .icc profile from the support archive ? – or is there an

  • How to get the first letter in Name as INITAL

    I am trying to put the first letter of first name as INITIAL in a sp column but I am not able to get the exact result. Could anybody help me with that TIA

  • Paste in place according to ruler origin in CS5?

    In CS3 I could paste from a 3" x 4" document setting the ruler origin wherever I wanted it, and then paste in front to an 8.5" X 11" or whatever and it would paste according to where the ruler origin was set in each of the documents. Now it ignores t