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!!

Similar Messages

  • Export Premiere CS6 keyboard shortcuts on OSX lion?

    (Mac OS Lion) How can I export my Premiere CS6 keyboard shortcuts on another computer (without print and retyping)?
    (Mac OS Lion) Comment exporter les raccourcis clavier de Premiere Pro CS6 et les importer sur un autre ordinateur  (sans imprimer et retaper les raccourcis un à un)?

    I've received the solution, effectively in Premiere user group. Adobe Forums: Finding and customizing keyboard shortcuts
    Thanks.

  • Export Premiere CS6 keyboard shortcuts on OSX lion? Comment exporter raccourcis clavier Premiere CS6

    (Mac OS Lion) How can I export my Premiere CS6 keyboard shortcuts on another computer (without print and retyping)?
    (Mac OS Lion) Comment exporter les raccourcis clavier de Premiere Pro CS6 et les importer sur un autre ordinateur  (sans imprimer et retaper les raccourcis un à un)?

    Hi,
    This might help:
    Adobe Forums: Finding and customizing keyboard shortcuts
    In Lion you will need to find a way to get into the Library folder which is hidden. One methode would be to use the Goto command and paste the thread: (your main harddrive name)/users/userfolder/Library/Application Support/Adobe/Premiere Pro/6.0
    If that doesn't work right away then reduce the thread back until your in the hiden Library folder and then look for a Premiere Pro folder.
    Cheers,
    DK

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

  • Transporting Premiere CC keyboard shortcuts to Premiere CS6?

    Hi there,
    So I've found my Premiere CC .KYS file with all my custom keyboard shortcuts in. I'm going to be visiting another editor tomorrow and would like to be able to import my keyboard layout into their machine, but I'm not sure what version of Premiere they'll be using. If it's CS6, will the .KYS file import correctly, or will there be compatibility issues?
    I could try re-installing CS6 just to test this out, but it's a bit of a faff, so I'm wondering if anybody has ever tried this previously?
    Cheers,
    Olly

    You wont break anything by trying it.  Make sure its named uniquely.
    I doubt that any shortcuts of NEW features in CC, not available in CS6... will work if you have them customised.

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

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

  • Keyboard Shortcuts aren't working! Premiere CS6

    Hi All,
    I'm working on Premiere CS6, I'm trying to use the shuttle slow keyboard shortcuts (K-J) and (K-L) but they aren't working. could you please help me!!
    I noticed that in the Premiere's keyboard shortcuts directory they say that the shortcuts are (shift+J),(shift+K) I tried them but again it's not working..i need the one i mentioned above because it slows the clip frame by frame(means that if there was a person acting in my video he moves and talks like a robot not as a slow motion) I hope I explained that well.
    p.s. I'm using a mac
    Thank you.
    Sarah

    Have they ever worked?  If so, remember that you have to have the Timeline panel or the Program Monitor active in order for those shortcuts to work.
    Cheers,
    Jeff

  • Cannot Open Premiere Keyboard Shortcuts

    I cannot open Keyboard Shortcuts on Premiere v8 on Cloud (just installed yesterday!) - I get no dialog box when I go to Premiere Pro -> Keyboard Shortcuts. Nothing. I am on Mac OS 10.8.3 and cleared my Cloud Sync settings, to no avail. What I am trying to do is customize my shortcuts to enable a dang marker on a clip within a timeline, since I hear that's the only way it can be done. Thank You!  Meg

    Hi Meg,
    Trashing preferences usually solves this issue. See this link: http://helpx.adobe.com/premiere-pro/using/preferences.html#change_preferences
    Thanks,
    Kevin

  • 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

  • Keyboard shortcut i doesn't work, only works if i press fn key. but listed as i in keyboard shortcuts

    hi
    the shortcut i has never worked with my computer, (MacBook Pro 2013 OSX 10.9). regardless of whether i use premiere pro cs6 or cc, whether i set my keyboard to british or german. it only works if i press the fn key, sometimes doesn't even work then, then i have to use a button/mouse. but if i go to Premiere Pro > Keyboard shortcuts it is listed that it should work.
    (actually i think i used to have the same problem with my former mbp and final cut pro 7. but i'm not 100% sure about that...)
    this is really quite annoying and i would appreciate any advice!
    thanks

    Just for understanding: you press the letter "i" on the keyboard to "set Inpoint" right? What happens if you plug an external keyboard?
    Some Shortcuts use the numpad (eg move selected clips on timeline by 12 frames forward/backward type "+" or "-" and "12" on the numpad) and "fn+i" is something on the numpad i guess.

  • Import or Move Keyboard Shortcuts Etc. to CS4?

    Is there a way to import or move my keyboard shortcuts from CS3 to CS4? What about layout settings etc.?
    Thanks

    I have migrated my keyboard settings from PPro2 to CS4 and CS5.
    From PPro 2 (XP) to CS4/5 (Win 7 64)
    copy file:
    C:\Documents and Settings\*yourusername*\Application Data\Adobe\Premiere Pro\2.0\*yourprefs.kys*
    to:
    C:\Users\*yourusername*\AppData\Roaming\Adobe\Premiere Pro\4.0\*yourprefs.kys*
    or
    C:\Users\*yourusername*\AppData\Roaming\Adobe\Premiere Pro\5.0\*yourprefs.kys*
    Run Premiere, select: Edit/Keyboard Customization/ and your key settings
    should appear in the Set: dropdown menu.
    I have not found a way to migrate layout settings.

  • 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

Maybe you are looking for