CS4 Keyboard Shortcuts - German

Would some kind sole lead me in the direction where I can download a list of shortcuts applicable to a German keyboard? Whilst I'm using an English language version of CS4 (in fact my OS (XP Pro) and all applications are also in English) I'm stuck with a German keyboard out of necessity.

Maybe I should start over and explain it a different way.
I do not apply anything via the OS.  I do not change my layout or use a different keyboard driver.
I just press the key or keys on my unchanged keyboard that work.
By experimenting I have discovered that it is the position of the keys that counts and not what is printed on the keys.
When English Photoshop says to hit the left bracket  ([) key, it really wants you to hit the second key from the right (not counting the return key) in the second row from the top.
When English Photoshop says to hit the forward slash (/) key ("preserve transparency" command), it really wants you to hit the first key on the right in the bottom row (just to the left of the shift key).
On my system (Engl PS CS4) this is the consistent behavior that I have observed (in conjunction with a German keyboard).
To find the key it wants me to use, I look at the picture of the US keyboard layout.  I don't have to do that.  I could blindly try out all key combinations until I happen to come across the right one.  But since Engl Photoshop calls the keys by their English keyboard layout names instead of saying "second key from the right, second row from the top", it makes sense to take advantage of that.

Similar Messages

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

  • CS4 Keyboard shortcuts for Tiling?

    I've just upgraded from Photoshop CS3 to CS4, and it looks like some of the keyboard shortcuts have changed or gone away entirely.
    In CS3, if I had multiple images open, I used Alt-w,a,h to tile horizontally, and Alt-w,a,v to tile vertically. Depending on the images I'm working with, I use this feature a LOT.
    CS4 only appears to have a single tiling option. What happened? Is there any way I can tell CS4 how I want the images tiled on the fly?
    Annoying.
    Thanks,
    -Dan

    Ah ha!  Thank you.  It does it (blending change) with the pen tool group, the path and direct selection tools, and the line and shape tools selected.  But not the eyedropper family.  How strange.  Inadequate beta testing?  One less annoyance in my work flow.  Thanks.  CB

  • InDesign CS4 Keyboard Shortcuts not working

    I ran the 6.0.1 updater and now my Keyboard shortcuts don't work. The only one that does is Command Q and the spacebar.
    When I got to Edit> Keyboard Shortcuts, none of the buttons do anything (New or Show Set)
    Any ideas?

    Restore your InDesign preferences. Quit InDesign. Launch InDesign and IMMEDIATELY hold down Ctrl+Cmd+Opt+Shift. When prompted, choose to restore preferences.

  • Premiere CS4 keyboard shortcuts

    Hi,
    I decided to have another go at getting CS4 Production Premium to work. (To cut a long story short, I was on CS3, everything worked fine, upgraded to CS4 and I couldn't get Premiere to output or render anything, went back to CS3!!).
    I've now loaded Windows 7 professional 64bit. (applied all updates)
    Loaded all of CS4 production premium and applied all the updates I could find (750Mb worth!!)
    So now I try Premiere (V4.2) and I have no shortcut keys!!
    Ctrl S does not save, Ctrl V does not paste etc. etc. Absolutely no shortcut keys whatsoever.
    Anyone any ideas? Is my installation flawed? I'm I missing something obvious?
    Never come across a programme with no shortcut keys before. This surely is not correct.
    Thanks in advance

    OK, for what its worth I have solved this issue myself!
    I reinstalled Premiere and added all available updates and the shortcut keys have now returned. I can only assume there was some glitch with my first install. Anyway as I purchased my CS4 upgrade last March, its only taken 8 months to get CS4 to operate as it should have done!! This is not good in my opinion and I will be VERY warry of any future updates by Adobe.
    I will be keeping a careful eye on this forum in future.
    I would say I highly recommed upgrading to Windows 7 professional (64 bit), especially if you are on Vista (as I was). I'm so far very impressed with this OS (even before a service pack has been released).
    For now I am a happy chap!!

  • CS4 Load Luminance Mask, keyboard shortcut

    I recently installed CS4.
    Is there a new keyboard shortcut to load the Luminance mask?
    Command+Opt+Shift+Tilde works fine with CS3 installed on this computer.
    Here is what works for CS3
    Command+Opt+Shift+Tilde
    Mac System Preference>Keyboard & Mouse> (Uncheck) Move focus to the window drawer
    I have read these earlier posts but did not find any posts for CS4.
    http://www.adobeforums.com/webx/.3bbaa366
    http://www.adobeforums.com/webx?128@@.59b68f9e
    Am I doing something wrong or has the CS4 keyboard shortcut changed?
    Thank you in advance.
    Kathryn
    Mac OS - 10.4.11
    Photoshop CS4 Extended

    Thank you Ann for the quick reply.
    Yep, that worked.
    I am still finding my way around with all the changes and new features.
    Kathryn

  • German Keyboard shortcuts in Englisch AFX CS5?

    Hi there,
    I have updatet to the englisch Production Premium CS5 (I always use englisch software even though I live in germany).
    In CS4, I was able to replace the englisch keyboard shortcut file in AFX with german keyboard shortcuts. Everything worked wunderfully.
    So I tried the same thing with AFX CS5. Since I don't have a german text file for the shortcuts of CS5, I just gave it a try and copied the CS4 german one. They pretty much look the same. But after restarting AFX the shortcuts are still in english, and the german content of the file itsell turned into englisch again :-(  Since I followed the same procedure like I did with CS4 a couple of months ago, I don't really know where the error is.
    Maybe somebody could send me the original german Keyborad shortcut file for AFX CS5. In windows 7 64bit it is located here:
    C:\Users\YOU\AppData\Roaming\Adobe\After Effects\10.0\Adobe After Effects 10.0 Shortcuts
    I don't know if that would solve it. But I guess that for CS5 the language file of the shortcuts might be slightly different from CS4, and thats why AFX CS5 won't accept my old CS4 german language shortcut file.
    Hope somebody can help,
    Martin

    Works without issues for me, but you may try the attached file (download with right-click --> Save Link as..., rename from JPG to TXT).
    Mylenium

  • How can I use premiere pro cc in english language with german keyboard layout/german shortcuts on a mac?

    Hi,
    how is it possible to use a german keyboard with its german shortcuts on premiere pro cc in english language on a mac?
    I use all my softwares in english.
    But aside adobe I can use or change in other softwares (Avid, FCP7, FCPX) to use german keyboard shortcuts on a german logic keyboard.
    With After Effects CC I could add a german .txt to a language folder to the installed english version and tataaa:
    I could use german keyboard and the german shortcuts on an english installed AE CC.
    And in PS there is also a trick.
    But in Premiere Pro CC this language .txt doesn´t exist.
    And there are many shortcuts that differ from english to german.
    Last Job I worked on a PC with the english installed language version, and I could work with the german QWERTZ Logickeyboard
    and use the german shortcuts.
    I googled and googled and even talked to the support. But no real helpful answer.
    Maybe it was easier to do in Premiere CS6. Was it possible there?
    So how is it possible to use a german keyboard QWERTZ with german shortcuts on Premiere Pro CC in english language on a mac?
    Thanks for your help.
    David
    MacBook Pro 2,6 GHz i7, OSX 10.9.3 english

    I'd also love to have the answer on this.
    It's really bothering. All Training material is in english and I have setup my complete system with all apps in english.
    With all the apps shortcuts work just fine, just with Premiere Pro CC it doesn't do it at all .....
    Please fix this!
    Andre

  • Custom keyboard shortcuts and editing multiple layers in Flash CS4

    Hi, all -
    CS3 -> CS4 transition newb here who's getting increasingly frustrated with the new motion tweens; however, for this project, I'm working in a 3D space and require using them, so I'm dealing with this bit by painful bit. I found the tip about Split Motion, but first question: how do you apply Split Motion across several layers at the same time? I have six different tweens, and in CS3, I used to be able to shift-click or click-drag across frames and apply a command to all of them (for example, hit F5 to add frames), but Split Motion is requiring me to right-click on each and every layer. This is really laborious, and I worry about future animations that might be more complex.
    Similarly, I tend to add custom keyboard shortcuts to each of my Flash versions for commands I use frequently and don't want to right-click a menu for (such as "add motion tween") - however, I can't seem to find where to create a custom shortcut for either that, or Split Motion.
    Any and all help would be appreciated as I muddle through this. Honestly, guys, I WANT to like the new version and there's so many added features, but it's hampering my workflow so bad I want to pummel it with sticks.

    Hey there,
    I definitely hear you about Split Motion. There is an enhancement request for supporting multiple layers, and adding it as a keyboard shortcut. The first one is tricky, but the second one is not. I think there was hope that splitting motions wouldn't be necessary much (especially since you have to be careful when doing so when eases are involved), which is why the eventual need for more functionality related to split motion was realized a bit late in the schedule.
    Now regarding other operations, such as you mentioned F5 to insert frames - that and other operations (inserting certain types of property keyframes, F6, and so on) work just fine.
    You can apply a shortcut to Create Motion Tween in the custom keyboard shortcut dialog.  Not all operations in the program are available though (most context menu items aren't), which is why unfortunately why we don't see Split Motion yet.
    It might be possible to avoid Split Motion though with another workflow. What are you using the feature for?  Just curious in case I can help.
    Jen.

  • CS4 application focus and keyboard shortcuts

    Quick preface: I couldn't find anything on this issue, searching Google and the Adobe forums specifically, so I don't know if it's a general bug in CS4 or if it's specific to the installations we have here at work.  Also, this isn't specific to Indesign, but it seems to happen the most with Indesign, and I wasn't sure where else to post.
    Basically, Indesign in particular (though this also happens with Photoshop and Illustrator to an extent), seems to lose focus if I've clicked on a palette or if I have an object selected, such that I have to click on a blank area of the document in order to use any keyboard shortcut.  For example, if I've just applied a new swatch to an object, and that object is still selected, and I hit CTRL-S to save, nothing happens and I have to click a blank area of the document, and then hit CTRL-S. This may not seem like a big deal, but if I'm going to do that, I might as well click "File" and then "Save."  And this seems to happen with every keyboard shortcut I use.
    Is there anything in the preferences of the application that may be causing this, or is it just an annoying bug, or am I the only one? Any help is greatly appreciated.
    [edit] And I'm using WinXP Pro, SP3 on an Intel Core2Duo.

    Have you tried refreshing the preferences?
    Adobe InDesign CS4 * Setting preferences

  • Keyboard shortcuts in CS4 won't work! Please help!

    In the last month I have lost all of my keyboard shortcuts in my CS4 program.  I was using Windows Vista Professional - and installed CS4 in August.  Everything was working great.  Then last month, all of the shortcuts disappeared.  I uninstalled/then reinstalled CS4 - still nothing.  Have done that several times, and looked on the forums for similar issues, in the Technotes - nothing.  Yesterday my office upgraded my system to Windows 7.  I am on a new HP Elitebook - also purchased in August, so my system can handle the program with ease.
    Anyway, I had the IT guy do a 'clean install' per most of the chatter online, so i went to install the program and the install came up with 'errors' first was that Adobe 9 was not installed, nor was Photoshop.  When i opened up illustrator - poof - no keyboard shortcuts again.  Please if anyone knows of something that I could try, I would really appreciate it.  This is seriously making me behind in projects and am ready to throw my new computer out the gigantic window that is in front of my desk.
    Oh, since this - I updated my graphics driver (per suggestion for Photoshop), unistalled CS4 - AGAIN - and am in the process of reinstalling.  But I am pretty sure that the shortcuts will be missing.
    Help!!

    These are the errors that I keep getting from the 'Get More Information' link after install.
    Adobe Acrobat 9 Professional (At install, older versions get upgraded. A l'installation, les versions plus anciennes sont mises à niveau. Bei der Instalation werden ältere Versionen aktualisiert.)
    Error:
    Error 2.
    Adobe Photoshop CS4 (64 Bit)
    Error:
    Error 1603. Error 1311.Source file not found: \\CGENG\Tammy$\Adobe CS4\payloads\AdobePhotoshop11-Core_x64\AdobePhotoshop11-Core_x641.cab.  Verify that the file exists and that you can access it.
    Adobe Fonts All x64
    Error:
    Error 1603. Error 1311.Source file not found: \\CGENG\Tammy$\Adobe CS4\payloads\AdobeFontsAllx64\AdobeFontsAllx641.cab.  Verify that the file exists and that you can access it.
    Adobe Illustrator CS4 LangPack (en_US)
    Error:
    Error 2.
    Adobe InDesign CS4 Application Language Files (en_US)
    Error:
    Error 2.
    Adobe InDesign CS4 Common Language Files (en_US)
    Error:
    Error 2.
    Adobe Photoshop CS4 English Language Pack
    Error:
    Error 2.
    LangPack (English) for DeviceCentral
    Error:
    Error 2.

  • 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

  • Custom keyboard shortcuts for Liquify and Vanishing Point filter interfaces in Photoshop CS4?

    Is there a way to set custom keyboard shortcuts for Liquify and Vanishing Point filter interfaces in Photoshop CS4? When I change my keyboard shortcuts preferences for Photoshop, they don't change for these filter interfaces. Is there another way?

    what is the problem ??
    I tried to change the shortcut for the Vanishing Point and Liquify from
    Edit -> keyboard shortcuts(button) -> keyboard shortcuts (tab) -> filter (tab)
    and you will find these filters :
    double click on it and make a new shortcut
    but it MUST be Ctrl + (any letter) or you can make it Ctrl + Alt + (any letter)
    but if you made it just one lettre like S for example
    you will can't make a shortcut.
    hope I understood what you ment ???

  • Keyboard shortcuts CS5 differ from CS4.

    Hello all,
    Im used to work on a mac, but in my new job i have to use both the PC and MAC. Now im used to CS4 and i just migrated to CS5. Now most shortcuts im used to dont work, wich is a real pain. I completely rely on them for i sometimes dont even know where to find them in the menus.
    Any advice?
    Thanks

    I have begun working in a school, helping students with shop illu and indy. They gave me a Dell, it will have to do. The students work on dell pc's or brand new macs, or on there own laptops. Most problems are solved, so i will remap the functions that need fixing. I would like to reply in the thread but im at home now and although im signed in, i cant respond, can only report abuse. I shall wander over to the photoshop section and ask there about my other questions.
    Thanks again all, for the quick response.
    Date: Thu, 27 Jan 2011 16:43:28 -0700
    From: [email protected]
    To: [email protected]
    Subject: Keyboard shortcuts CS5 differ from CS4.
    What brand of Laptop?
    This certainly does sound like the mapping problem I mentioned. You can fix all the shorcuts that use the enter key by making a new set and adding the numpad enter as a second option, but that isn't going to help with other shortcuts that use numpad keys (though the only ones that likely would affect are style shortcuts, for which the numlock must be on -- others you can use the regular keys for those functions and just change the habits you may have developed about the numpad keys).
    I'm not sure what's going on in Photoshop. You should probably ask over there if anyone knows of similar issues related to keyboard mappings. And just maybe you should try a different brand of laptop...
    >

  • Keyboard shortcuts CS4

    Where can I get the english keyboard shortcuts for Fireworks
    CS4?
    I have the french version installed and I when I read an
    english tutorial its way less complicated to follow with the
    english shortcuts.
    thanks

    anyone?
    In case someone wants to help me, the shorcuts can be
    exported in html in Edit --> Keyboard Shorcuts
    once the window is open and with Fireworks selected, the
    exported as HTML option is just on the right
    and this file can be uploaded somewhere or send to my email
    at *edited out*
    thanks

Maybe you are looking for