PSE6 blocks Esc key on Vista

Hi,
I have a common problem with Photoshop Elements 6 on Windows Vista (both 32bit and 64bit versions):
It blocks the Esc key in all other applications! (As long as PSE6 is running, pressing the Esc key in any other windows than its own has no function. This is really annoying, as the Esc key is used like the "cancel" button in almost any window.)
I know the workaround with pressing Shift+Esc - but isn't there any bugfix released by Adobe? Or do they just ignore it and go around blocking keys on all computers...
-Frank

See this thread
http://www.adobeforums.com/webx/.3c051f74/16

Similar Messages

  • Blocking system keys

    I'm develpoing with NetBens4.1 / Windows CE 3.0 / JeodeJVM 1.2.
    I'd solved the Runtime.exec() lack in that JVM implementation by JNI calls to DLL's developed with Microsoft EVC++3.
    Somebody have's an C++ example on how to block system keys like CTRL+ESC, ALT+TAB in Windows CE ?
    Registry settings would help to...

    Found out.
    The taskbar get's the ALT+TAB and the CTRL+ESC events, so just disabling it locks these keys. Heres the JNI code:
    SysLib.cpp
    JNIEXPORT jint JNICALL Java_sys_SysLib_HideTaskBar
    (JNIEnv *env, jclass obj) {
    HWND hTaskBarWnd;
    HWND hDeskTopWnd;
    int rc=1;
    // find the window and hide
    hTaskBarWnd=FindWindow(_T("HHTaskBar"),NULL);
    if (hTaskBarWnd)
    EnableWindow(hTaskBarWnd,FALSE);
    ShowWindow(hTaskBarWnd,SW_HIDE);
    else
    rc= -1;
    // find the desktop window and resize it
    hDeskTopWnd=FindWindow(_T("DesktopExplorerWindow"),NULL);
    if (hDeskTopWnd)
    SetWindowPos(hDeskTopWnd,NULL,0,0,GetSystemMetrics(SM_CXSCREEN),
    GetSystemMetrics(SM_CYSCREEN), SWP_NOACTIVATE | SWP_NOZORDER |
    SWP_NOMOVE);
    else
    rc= -2;
    return rc;
    JNIEXPORT jint JNICALL Java_sys_SysLib_ShowTaskBar
    (JNIEnv *env, jclass obj) {
    HWND hTaskBarWnd;
    HWND hDeskTopWnd;
    int rc=1;
    // find the window and show it
    hTaskBarWnd=FindWindow(_T("HHTaskBar"),NULL);
    if (hTaskBarWnd)
    EnableWindow(hTaskBarWnd,TRUE);
    ShowWindow(hTaskBarWnd,SW_SHOW );
    else
    rc=-1;
    // find the desktop window and resize it
    hDeskTopWnd=FindWindow(_T("DesktopExplorerWindow"),NULL);
    if (hDeskTopWnd)
    SetWindowPos(hDeskTopWnd,NULL,0,0,GetSystemMetrics(SM_CXSCREEN),
    GetSystemMetrics(SM_CYSCREEN)-26, SWP_NOACTIVATE | SWP_NOZORDER |
    SWP_NOMOVE);
    // Note: 26 is the taskbar height it should be computed.
    else
    rc=-2;
    return rc;
    }

  • How to close JFileChooser dialog only while using ESC key ?

    Hi All,
    I am using a Frame and from this frame i am calling the JFileChooser via a JButton.
    and using JFileChooser ShowOpenDialog() for open and close .
    while doing ESC operation my Main Frame is getting closed with JFileChooser dialog.
    Can i close only JFileChooser dialog while doing ESCAPE key operation.
    I Have Escape key function in Main Frame file and JFileChooser file( EscKeyEventActionIntialization)
    But while debuging i am not able to catch the esc key action inside EscKeyEventActionIntialization.
    I have attached the code, please suggest me , if i need to do any change .
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package MainPackage;
    import javax.swing.filechooser.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.*;
    public class SourceSettings extends javax.swing.JDialog{
        JDialog dialog;
        private javax.swing.JFileChooser jFileChooser1;
        MainFile  mainFile;
        ImageIcon icon = new ImageIcon(getClass().getResource("/Resource/mchpIcon.GIF"));
        /** Creates new form SourceSetting */
        public SourceSettings(MainFile  pMPFS) {
            dialog = new JDialog();
            dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
            mainFile = pMPFS;
            jFileChooser1 = new javax.swing.JFileChooser();
            dialog.add(jFileChooser1);
            EscKeyEventActionIntialization();
            jFileChooser1.setDialogTitle("Browse For Folder");
            jFileChooser1.setFont(new java.awt.Font("Microsoft Sans Serif", 0, 11)); // NOI18N
            jFileChooser1.setName("Browse For Folder"); // NOI18N
        public String getDirctoryPath()
            int retval = jFileChooser1.showOpenDialog(dialog);
            dialog.setVisible(true);
            if(retval  == JFileChooser.APPROVE_OPTION)
                return jFileChooser1.getSelectedFile().getAbsolutePath().toString();
            else
                dialog.setVisible(false);
                dialog.dispose();
                return null;
        public String getParentDirctoryPath()
            return jFileChooser1.getCurrentDirectory().getAbsolutePath().toString();
        public String getOutputDirctoryPath()
            if(jFileChooser1.showOpenDialog(mainMpfs)  == JFileChooser.APPROVE_OPTION)
               return jFileChooser1.getCurrentDirectory().getAbsolutePath().toString();
            else
               dialog.dispose();
               return null;
        private void EscKeyEventActionIntialization()
            Action  ESCactionListener = new AbstractAction () {
              public void actionPerformed(ActionEvent actionEvent) {
                dialog.setVisible(false);
                dialog.dispose();
            KeyStroke stroke = KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0, true);
            JComponent comp = dialog.getRootPane();
            comp.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put(stroke, "ESCAPE");
            ActionMap actionMap = comp.getActionMap();
            actionMap.put("ESCAPE", ESCactionListener);
    }

    You have a class that extends JDialog and has a JDialog member variable (very confusing), and no main(...) method. How is the class used as a JDialog?
    To get better help sooner, post a SSCCE that clearly demonstrates your problem. Note that this should be executable and should not contain any extraneous code.
    db

  • How do I get the esc key to work without having to use shift esc?

    Just got a new iMac and migrated everything from my old iMac but one thing is not working. I use to be able to use the esc key to back out of full screen mode or deselect items. It only works now if I use shift and esc. I would like to set it so I can just hiy esc and not shift esc.
    Any help woul dbe appreciated.
    Jeff

    Maybe some third party software interference.  Try a guest account or SafeBoot to diagnose.
    different app behave differently, for ex Firefox: command-shift-F

  • Esc key not working in windows 7

    Hi,
    I have a HP Pavilion dv6-4XXX series. It's almost been 2 years I bought this notebook. 
    Recently I faced an issue. The "ESC KEY" has stopped working. However I could find that it's working fine in BIOS but not when I am logged in to windows. I have windows-7 installed.
    Please let me know what could be the issue and the solution for the same.

    Hello siddharthmishra,
    You’re having a problem with the ESC key not working.
    Go to device manager and uninstall the keyboard and restart the computer. This should uninstall and reinstall the driver for the keyboard.
    Here is a link to device manager.
    If the problem has not been happening for very long, you might try a System Restore. This will take the system back to before the problem started happening without affecting any of your files.
    Here is a link to a System Restore.
    Let me know how everything goes.

  • Block from key in business area for company do not have business area

    Dear experts,
    How can I do a validation rule to block from key in business area for company do not have business area?
    Kindly advice.
    tks!

    Hi,
    One option, you can create role via Tcode PFCG for each user/company which do not have business area. You can disable the business area in authorization tab.
    One more option you can greyed or freezed the business area field for the company which do not have the business area by using Tcode OBC4. You can suppress the business area field for each GL that been used by the company code. In other words, you create special field status group for the company and suppress the business area.
    Hope this will help you.
    TQ
    Regards,
    Nazrul

  • How to use "Esc" key to call a function in scripting

    I mean when I'm executing a script,if I want break a loop, I can just press the "Esc" key.I think this is very handly.But I also want to call a function when "Esc" is pressed,is this possible, and how can I do this?

    Taken from Peter Kahrel's UI guide.
    http://www.kahrel.plus.com/indesign/scriptui-2-0.pdf
    So escape could be captured by if(myWindow.show()==2){do stuff }?
    the user clicks OK (which in this script corresponds to pressing Enter) or they can click
    Cancel (which is the equivalent of pressing Escape). The window's behaviour is
    this: if the user presses OK, the line myWindow.show ( ) returns 1, if they press
    Esc, that line returns 2. We capture this as follows:
    if (myWindow.show () == 1)
    var myName = myText.text;
    else
    exit ();

  • Prevent ESC key from closing movie

    Hi!
    Can anyone please advise me how to stop a movie closing when the ESC key is pressed.
    I have a dialog function that opens another movie to confirm quit.
    I would prefer it to minimize instead of simply closing with no warning.
    Many Thanks
    Sarah

    You set 'the exitLock' to TRUE - check the docs for more details. Also, once the exitLock is true, you can implement an 'on closeRequest' handler to detect your using pressing the ESC key, or clicking the close box on the titlebar.

  • Esc key not working with JDialog

    Hi,
    We are facing a KeyListening problem with JDialog. We developed an application using JRE 1.4.0. When we migrate from 1.4.0 to 1.4.2.The Esc keys(All keys) associated with the JDialog is not listening. Following is code piece is showing the Esc key. The same piece of code is working with 1.4.0 and with lesser versions. U'r help will be appriciated.
    import java.awt.Container;
    import java.awt.event.KeyEvent;
    import java.awt.event.KeyListener;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JPanel;
    public class EscDialog extends JDialog implements KeyListener {
         static EscDialog ed = new EscDialog();
         public static void main(String[] args) {
              ed.setSize(200, 300);
              ed.addKeyListener(ed);
              JButton jb = new JButton("Test");
              JPanel jp = new JPanel();
              jp.add(jb);
              Container cp = ed.getContentPane();
              cp.add(jp);
              ed.show();
         public void keyPressed(KeyEvent anEvent) {
              if (anEvent.getKeyCode() == KeyEvent.VK_ESCAPE)
                   System.exit(0);
         public void keyTyped(KeyEvent anEvent) {
         public void keyReleased(KeyEvent anEvent) {
    }

    An example:import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test extends JDialog {
        public Test () {
            getContentPane ().setLayout (new FlowLayout ());
            getContentPane ().add (new JLabel ("Press escape to exit..."));
            getRootPane ().getInputMap ().put (KeyStroke.getKeyStroke (KeyEvent.VK_ESCAPE, 0), "dispose");
            getRootPane ().getActionMap ().put ("dispose", new AbstractAction () {
                public void actionPerformed (ActionEvent event) {
                    dispose ();
            pack ();
            setDefaultCloseOperation (DO_NOTHING_ON_CLOSE);
            setLocationRelativeTo (null);
            setTitle ("Test");
            setVisible (true);
        public static void main (String[] parameters) {
            new Test ();
    }Kind regards,
      Levi

  • Use of ESC key to close e-mail

    HI All,
    Is it possible to set up Mail to allow use of ESC key to close an open e-mail ? The best shortcut i can find to do this is cmd-w. All other (non-apple) email applications I have used allow the use of the ESC key.
    Thanks

    Very fast, actually. I too have graphics turned off. HTML of course is already there, as it is part of the message. I would say 90-95% of the spam is trapped and moved to the junk folder by Mail, so the workflow becomes read/delete read/delete .... with an occasional read/reply/send/delete or glance/junk. I can see no reason for actually opening the message in a separate window.
    AK

  • Click produces menus instead of desired action.  Menu can be cleared using esc key, but additional clicks produce more menus until I hit the lucky click that yields the desired action.

    Magic mouse & trackpad "clicks" produce menus instead of desired actions. Menus can be cleared using esc key, but additional clicks usually produce menus until I hit the magic click that initiates the desired action.  How can I deactivate the menus that appear?

    Sounds like your left click is set to right click. Read this: http://magicmousehelp.com/change-primary-click-magic-mouse/

  • Windows 7 ESC key stopped working

    I've got a fully patched Windows 7 Professional Desktop computer that I've been using for over 2 years.  Yesterday my ESC key stopped working, which I first noticed when using Outlook and tried to close an open email window.  I checked the keyboard
    by moving it to another Windows 7 computer - works great.  I also noticed that other keyboard shortcuts that utilize the ESC key still work, like for example pressing Ctrl / ESC brings up the Start menu.  The problem is limited to functions that
    operate off the ESC only - like closing an open email in Outlook or closing an open photograph on Facebook.
    I downloaded a keyboard testing app that shows the key not working.  But when I install this program on another computer and move the suspect keyboard - the program shows that it does in fact work.
    I suspect something is wrong at a registry level - some entry has hijacked the key mapping.  I've spent several hours on Google looking at various suggestions - all to no avail.  I've tried updating drivers as a last resort - no change.  Remember,
    the ESC does work when used in a sequence involving multiple buttons.  Any suggestions?

    I've encountered a similar situation regularly: my Esc key just quits working in mid session, and I always forget what the cause/fix is. 
    I have this same keyboard for over 8 years now, and it always works fine, so no, it's not a hardware issue - these issues typically never are. Rebooting the PC always solves the issue, but rebooting a dev workstation, with a gazillion apps open is a PITA.
    Turns out in my case it's always Photoshop CS2 that 'kills' my Escape key; as soon as I close Photoshop, the Esc key functions normally again.
    Another issue I get is the Ctrl/Shift/Alt keys sometimes quit working; again, a reboot always fixes the issue, but rebooting is always a last recourse. Usually I just mash the Caps Lock/Ctrl/Shift/Alt; sometimes it works, sometimes it doesn't and I need
    to reboot...

  • CS4 64bit Bridge slideshow will not end with ESC key

    I have just installed CS4 64bit on a new computer with Windows 7 64bit. I've done the update so now Bridge sees the CR2 files from my Canon 5D MkII but when I go into slideshow...which I use extensively for quickly reviewing images, I cannnot end the slideshow with the normal ESC key stroke... Which really kills the utility of slideshow. Any suggestions as to getting this to work or other ways to close slideshow? Now the only option is to croll through all the images in the folder at which point slideshow will close.

    I can't help that Adobe gave me a download of 64bit CS4...but that is what they did...so obviously they have a 64bit version of CS4.
    Sorry, as a Mac user PSCS 5 was the first version in 64 bit, PSCS4 was only 64 bit for Windows, However, like Curt stated, Bridge CS6 is the first 64 bit version for both platforms.
    But, your suggestion to check the function of the ESC key in other applications was dead on...It does not work, so Windows 7 needs a bug fix.
    Or your keyboard itself needs a spring clean...

  • Press the esc key for startup menu

    My HP mini netbook won'tload to the start-up page.  I'm using Windows 7. I get the following messgae "Press the Esc key for startup menu" but when I do nothing happens.

    Did you follow the steps in the last post?  Did anything change?  If you cannot get into the BIOS, then it is done.  Try a BIOS recovery.  Some of the newer computers motherboards have a BIOS recovery but I cannot tell if that is one.
    {---------- Please click the "Thumbs Up" to say thanks for helping.
    Please click "Accept As Solution" if my help has solved your problem. ----------}
    This is a user supported forum. I am a volunteer and I do not work for HP.

  • Can I disable the ESC key in camera raw?

    When working in Photoshop in general, I've gotten into the habit of using the ESC key to get out of a tool I'm currently using, but when using Camera Raw, this has the consequence of closing the image I've been working on without saving any of the edits I've made.  I've tried looking in the keyboard shortcut assignments for it, but no luck.  Maybe it's a Windows-wide setting, or a per-application setting that can be set?  And yes, I know I can stop hitting the ESC key, but that's not the answer I'm looking for.  Thanks in advance for any help on this.

    Jeff Schewe wrote:
    I guess you don't understand the fact the in ACR, the ESC key is doing EXACTLY WHAT IT'S SUPPOSED TO DO...exit without changes...
    And CTRL+S in PS also does what it's supposed to do as the programmers assigned it, but I got tired of accidentally hitting it when I meant to hit CTRL+D, so I removed the CTRL+S assignment from the Save command.  I wonder why the programmers gave us access to the shortcut key assignments.  Maybe it's so that we can make or remove assignments that work best for us, and not just accept what someone else thought worked best?
    Jeff Schewe wrote:
    And maybe it's you that needs to adopt and adapt?
    In this case, that could very well be true.

Maybe you are looking for

  • Comp wont recognize when ipod is plugged into USBport

    i have done everything and am at my wits end! Problem: when i plug in my ipod into the USB port it will charge, but the continuing arrow wheel that indicates it is activating will not display, nor will itunes accept its presence. in order to restore

  • My iPod will not synch photo now that I have upgraded to iTunes 10

    I recently upgraded to iTunes 10. Ever since, my 80GB iPod classic will no longer synch with my Photo Library. It synches everthing else fine, but it will not synch photos. Does anybody know a fix for this?

  • Why do I need a credit card to download a free app?

    Why do I suddenly need a credit card to download a free app? Is this something new or are we somehow getting hacked?

  • Client Copy between Two Different Systems

    Hi!! Could someone please explain or provide any documentation which explains how to perform client copy between two r/3 systems of same version(ecc 6.0) Thanks and Regards, Vishwa.

  • Dual Layer Burning Premiere Elements 4.0

    I know this is probably an easy one for anyone that has been using Premiere Elements for awhile.  I just finished a 100 minute video and I want to burn it at as good of quality as possible on one DVD.  So, I thought I would burn it using a dual layer