Screen shows when ALT key is pressed

Hi,
For some reason, photoshop CC has started showing a big ugly ALT next to my cursor when I press the ALT key. I dont want this! It gets in the way.
Im not sure how I turned it on, and would LOVE to know how to turn it off.
Many thanks!
G

OK found it.
The driver for the wacom tablet I use had stopped functioning. I think a derfault windows driver kicked in instead and was kindly telling me what keys I was pressing.
A simple reboot did the trick - it was NOT a photoshop setting.
Thanks anyhow.

Similar Messages

  • Elements 9 Crashes When Alt key is Pressed

    I am using Elements 9 - an upgrade from 4. When I try to use the clone stamp the programme crashed irrespective of file size. This did not happen in Elements 4.
    Operating system is XP.
    Any Ideas?

    With the clone stamp tool selected - click on the downward pointing drop down icon (far left on the options menu) and select re-set tool.
    If that makes no difference you may need to re-set preferences.
    Start the editor whilst simultaneously holding down the Ctrl+Alt+Shift keys.
    When you see “Delete the Adobe Photoshop Elements Settings File” - click yes.
    When you re-start the program again the preference files will be automatically re-built.

  • Mnemonics don't appear until alt key is pressed

    In a swing application, mnemonics have been given for all the JMenuItems. When the application is started, the underlined mnemonics do not appear until the alt key is pressed. Can any one throw some light on this strange behaviour?

    However, I don't want any text (either a preview of the message or even who the message is from) to appear in the lock screen.  I just want an audible or vibration alert to sound.  I do still want a banner alert when not in the lock screen.  Is this possible?

  • Default button being clicked multiple times when enter key is pressed

    Hello,
    There seems to be a strange difference in how the default button behaves in JRE 1.4.X versus 1.3.X.
    In 1.3.X, when the enter key was pressed, the default button would be "pressed down" when the key was pressed, but wouldn't be fully clicked until the enter key was released. This means that only one event would be fired, even if the enter key was held down for a long time.
    In 1.4.X however, if the enter key is pressed and held for more than a second, then the default button is clicked multiple times until the enter key is released.
    Consider the following code (which is just a dialog with a button on it):
    public class SimpleDialog extends JDialog implements java.awt.event.ActionListener
    private JButton jButton1 = new JButton("button");
    public SimpleDialog()
    this.getContentPane().add(jButton1);
    this.getRootPane().setDefaultButton(jButton1);
    jButton1.addActionListener(this);
    this.pack();
    public void actionPerformed(ActionEvent e)
    if (e.getSource() == jButton1)
    System.out.println("button pressed");
    public static void main(String[] args)
    new SimpleDialog().show();
    When you compile and run this code under 1.3.1, and hold the enter key down for 10 seconds, you will only see one print line statement.
    However, if you compile and run this code under 1.4.1, and then hold the enter key down for 10 seconds, you will see about 100 print line statements.
    Is this a bug in 1.4.X or was this desired functionality (e.g. was it fixing some other bug)?
    Does anyone know how I can make it behave the "old way" (when the default button was only clicked once)?
    Thanks in advance if you have any advice.
    Dave

    Hello all,
    I think I have found a solution. The behaviour of the how the default button is triggered is contained withing the RootPaneUI. So, if I override the default RootPaneUI used by the UIDefaults with my own RootPaneUI, I can define that behaviour for myself.
    Here is my simple dialog with a button and a textfield (when the focus is NOT on the button, and the enter key is pressed, I don't want the actionPerformed method to be called until the enter key is released):
    package focustests;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.util.*;
    public class SimpleDialog extends JDialog implements java.awt.event.ActionListener
    private JButton jButton1 = new JButton("button");
    public SimpleDialog()
    this.getContentPane().add(new JTextField("a text field"), BorderLayout.NORTH);
    this.getContentPane().add(jButton1, BorderLayout.SOUTH);
    this.getRootPane().setDefaultButton(jButton1);
    jButton1.addActionListener(this);
    this.pack();
    public void actionPerformed(ActionEvent e)
    if (e.getSource() == jButton1)
    System.out.println("button pressed");
    public static void main(String[] args)
    javax.swing.UIManager.getDefaults().put("RootPaneUI", "focustests.MyRootPaneUI");
    new SimpleDialog().show();
    and the MyRootPaneUI class controls the behaviour for how the default button is handled:
    package focustests;
    import javax.swing.*;
    * Since we are using the Windows look and feel in our product, we should extend from the
    * Windows laf RootPaneUI
    public class MyRootPaneUI extends com.sun.java.swing.plaf.windows.WindowsRootPaneUI
    private final static MyRootPaneUI myRootPaneUI = new MyRootPaneUI();
    public static javax.swing.plaf.ComponentUI createUI(JComponent c) {
    return myRootPaneUI;
    protected void installKeyboardActions(JRootPane root) {
    super.installKeyboardActions(root);
    InputMap km = SwingUtilities.getUIInputMap(root,
    JComponent.WHEN_IN_FOCUSED_WINDOW);
    if (km == null) {
    km = new javax.swing.plaf.InputMapUIResource();
    SwingUtilities.replaceUIInputMap(root,
    JComponent.WHEN_IN_FOCUSED_WINDOW, km);
    //when the Enter key is pressed (with no modifiers), trigger a "pressed" event
    km.put(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_ENTER,
    0, false), "pressed");
    //when the Enter key is released (with no modifiers), trigger a "release" event
    km.put(KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_ENTER,
    0, true), "released");
    ActionMap am = SwingUtilities.getUIActionMap(root);
    if (am == null) {
    am = new javax.swing.plaf.ActionMapUIResource();
    SwingUtilities.replaceUIActionMap(root, am);
    am.put("press", new HoldDefaultButtonAction(root, true));
    am.put("release", new HoldDefaultButtonAction(root, false));
    * This is a copy of the static nested class DefaultAction which was
    * contained in the JRootPane class in Java 1.3.1. Since we are
    * using Java 1.4.1, and we don't like the way the new JRE handles
    * the default button, we will replace it with the old (1.3.1) way of
    * doing things.
    static class HoldDefaultButtonAction extends AbstractAction {
    JRootPane root;
    boolean press;
    HoldDefaultButtonAction(JRootPane root, boolean press) {
    this.root = root;
    this.press = press;
    public void actionPerformed(java.awt.event.ActionEvent e) {
    JButton owner = root.getDefaultButton();
    if (owner != null && SwingUtilities.getRootPane(owner) == root) {
    ButtonModel model = owner.getModel();
    if (press) {
    model.setArmed(true);
    model.setPressed(true);
    } else {
    model.setPressed(false);
    public boolean isEnabled() {
    JButton owner = root.getDefaultButton();
    return (owner != null && owner.getModel().isEnabled());
    This seems to work. Does anyone have any comments on this solution?
    Tjacobs, I still don't see how adding a key listeners or overriding the processKeyEvent method on my button would help. The button won't receive the key event unless the focus is on the button. There is no method "enableEvents(...)" in the AWTEventMulticaster. Perhaps you have some code examples? Thanks anyway for your help.
    Dave

  • Should the screen show when the ringer switch is changed?

    My ringer is not working on my 4S with 7. Should the screen show when the mute switch is changed from on to off and back? I believe it did before.

    But is not now. and my ringer is intermittent.

  • HT1420 What will the screen show when I deauthorize all computers?   Will it show them and then I select the ones to authorize?  I don't want to undo or be unable to re-authorize the ones I still want.

    What will the screen show when I deauthorize all computers?   Will it show them and then I select the ones to authorize?  I don't want to undo or be unable to re-authorize the ones I still want.

    "What will the screen show when I deauthorize all computers?  "
    Nothing.  Not sure what you mean.
    " Will it show them and then I select the ones to authorize? "
    No.
    You have to authorize a computer from that computer.  You cannot authorize a computer from another computer.

  • , The screen shows quicktime logo and despite pressing done it is not reverting back

    My Itunes app is stuck on my phone after accessing a podacast. i am unable to get out of it. The screen shows quicktime logo and despite pressing on the done button nothing happens. I can close the Itunes app, but the minute I access it get the same podcast menu.

    Place the device in DFU mode then restore it.

  • No key event when compose keys are pressed

    I am supporting a legacy application for Sabre which maps some of the keys differently. For example, on a French keyboard the Compose key which is used to put a ^ on top of the vowel characters is to be remapped to produce a special character called a "Change Character" that has a special use for reservation agents that use Sabre
    The problem is, the first time you press the ^ compose key there is no key event apparently because the VM figures it doesn't yet know what key to report, it is expecting you to press a character such as 'o' and then you get an 'o' with a '^' on top of it.
    If you press the ^ compose key a second time, you get the following key events:
    keyPressed
    keyTyped
    keyTyped
    keyReleased
    On the screen you will see two ^ characters appear. Currently I remap the ^ character to the "Change Character", and I suppress the second keyTyped event so that I only get one character. The problem is that the user ends up having to press the key twice to get one "Change Character."
    I have no fix for this problem because there is no key event produced when they press the ^ compose key the first time.
    By the way, this behavior appears to have been introduced with jdk 1.3. The older jdk did produce a key event the first time you pressed the compose key. I would expect that this behavior was considered to be a bug and was fixed in jdk 1.3.
    Is there some other way to detect when the user presses a compose key? If not, is it possible for future jdk releases to report a keyPressed event when a compose key is pressed? This event would not cause a character to appear on the screen, but would allow programs to detect when the compose key is pressed.
    There is already a key on the French keyboard that behaves this way. It is the key to the left of the '1' key and it has the pipe symbol on it. If you press Shift plus this pipe key, no character is produces but a keyPressed event with a keycode of 222 is produced. I merely point this out to show that there is a way to report key events whithout producing output on the screen.
    Thanks, Brian Bruderer

    I don't know if this actually helps, but it seems that you can bind an Action to a dead key like the circumflex of the French keyboard
    Keymap keymap = textPane.addKeymap("MyEmacsBindings", textPane.getKeymap());
    Action action = getActionByName(DefaultEditorKit.beginAction );
    KeyStroke key = KeyStroke.getKeyStroke(KeyEvent.VK_DEAD_CIRCUMFLEX);
    keymap.addActionForKeyStroke(key, action);I saw this on a Swing tutorial and modified it slightly. Have a look at it :
    http://java.sun.com/docs/books/tutorial/uiswing/components/generaltext.html
    Chris

  • No way to start unless alt key is pressed during startup

    2QuadCOre 2x3,2 GHZ , 10.6.8 MAc Pro  - very annoying issue.
    Starting normally I cannot pass grey screen of death .
    The only way to pass this point is to force restart with alt key pressed - and then click on my startup drive ( i have several drives with OSX ) I have been runninmg disk utility / repairing priviliges etc .
    Obviosly my system drive is chosen and locked in system preferences.
    Any hints how to fix it .
    Thank you .

    I'd probably make two backups of the disk (to external disk drives), and then nuke and pave the installation.
    But since you're probably not going to start there given your current approach, start by resetting the SMC, et al.
    I might well install the 10.6.8 Combo update (not the delta update), as well.
    Some folks suggest acquiring and installing an add-on repair tool such as Disk Warrior.  (I'm somewhat skeptical around those, though they do apparently work for some folks.)
    Permission repairs and disk repairs are typically entirely ineffective with corrupted files, corrupted parameter settings, etc.
    The usual low-level command for enabling and selecting a boot disk is bless.  This is an older discussion, and there are others discussing the tool around.
    But when a Unix boot disk goes wonky, starting over (and importing your environment as part of the nuke-and-pave sequence) tends to be the best value for your time.   And you get good, complete, and current backups of your data, assuming the backup tool doesn't become derailed by whatever corruption(s) might be lurking here.

  • I'm shooting great white screen but when I key out the white background, I have a very thin white outline around my person that I don't know how to soften without loosing some facial opacity. Any suggestions?

    Hi,
    I'm shooting white screen and FINALLY have my lighting, white balance, exposure and focus making a great looking, crispy clip! But when I key out the white background in a short segment, I'm left with a very thin, white outline around my person that I don't know how to soften, without loosing facial opacity. I only tried using the 'Edges' tool. Any suggestions?
    Thanks!

    set the wake-on lan on the main computer
    The laptop's too far away from the router to be connected by ethernet. It's all wifi.
    No separate server app on the laptop, it's all samba
    The files are on a windows laptop and a hard drive hooked up to the windows laptop. The windows share server is pants, so I'd need some sort of third party server running. Maybe you weren't suggesting to use Samba to connect to the windows share though?
    I'm glad that you've all understood my ramblings and taken and interest, thanks The way I see it, I can't be the only netbook user these days looking for this kind of convenience, and I certainly won't be once chrome and moblin hit the market.
    Last edited by saft (2010-03-18 20:38:08)

  • How come multiple audiotags in ebook can play all together in the last version of ibooks and ios6 while before they fade eachother when play key is pressed ?

    in ipad1 with ios5.1.1 and latest ibooks app audiotags stop the last music played when the new music starts
    in ipad3 with ios6 and latest ibooks let all the music play together with a resulting mess
    in ipad2 with ios6  ibooks fade the last tag that is playing when the play key is pressed in the new audiotag

    Gah. So It looks like the first version of the song on your iPod is the definitive version of a song (as is the case in iTunes). So in order to ensure that the version you want plays, you have to:
    1. make that the only version in iTunes (or first in the file structure)
    2. update Genius
    3. sync your iPod
    BOO. Too much work (I'm still going to do it though...)
    I would really like a feature that allowed you to specify which song would be chosen (the existing rating system would seem to be easiest).
    Another solution I thought of still requires a lot of work. This is assuming you prefer It would go something like this:
    1. Create an directory structure at the root of your library that would prioritize tracks, such as:
    a) Albums (for full length albums)
    b) Collections (for best ofs etc.)
    c) EPs (for singles or remix albums)
    e) Live Performances
    -assuming you prefer album versions over remixes over live versions, or more directly:
    a) High Priority
    b) Low Priority
    2. Place Each Album or individual tracks in their appropriate folder.
    3. Reset your iPod
    4. Sync
    The directory structure will intrinsically place higher priority versions on you iPod first, making them a priority version there. Pain in the...

  • JSlider -- catch when arrow keys are pressed

    Hi,
    With a JSlider, when it has focus and a user presses the left/right arrow keys ..the thumb on the slider is moved to a new value. I tried adding a keyListener but that didnt work...how can I catch when a left/right arrow key is pressed??
    thanks

    You can take over the binding, but you will be responcible for the action....
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class KeyMappingEx extends JFrame
    JSlider slid;
        public KeyMappingEx()
            super( "Key Mapping Ex");
            setDefaultCloseOperation( EXIT_ON_CLOSE );
            slid  = new JSlider( 0, 100, 50 );
              slid.setMajorTickSpacing( 20 );
            slid.getInputMap( ).put( KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0, false),
                                       "RIGHT_ARROW" );
            slid.getActionMap().put( "RIGHT_ARROW", new RightAction(  ) );
            slid.getInputMap( ).put( KeyStroke.getKeyStroke(KeyEvent.VK_LEFT, 0, false),
                                       "LEFT_ARROW" );
            slid.getActionMap().put( "LEFT_ARROW", new LeftAction(  ) );
            setContentPane( slid );
            pack();
            setLocationRelativeTo( null );
            setVisible( true );
        public static void main( String[] args )
            try
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            catch( Exception e )
            new KeyMappingEx();
        class RightAction extends  AbstractAction
            public void actionPerformed(ActionEvent e)
                System.out.println("RIGHT ARROW");
                slid.setValue( slid.getValue() + slid.getMajorTickSpacing() );
        class LeftAction extends  AbstractAction
            public void actionPerformed(ActionEvent e)
                System.out.println("LEFT ARROW");
                slid.setValue( slid.getValue() - slid.getMajorTickSpacing() );
    }

  • Green Screen shows when trying to play videos?

    Since downloading itunes 8, all of my videos don't work. When you click on them to play, a green screen shows up, and nothing else. And, if I try to play them on Quicktime Player, it doesn't work, either. I tried to enable the Direct3D video acceleration like it said in an article I found, but again, it didn't work.
    I'm sure this topic has been brought up before, but if someone would help, that would be great!
    Thanks

    Hi amax_02
    try this
    http://discussions.apple.com/thread.jspa?threadID=1356874&tstart=196

  • E71 no longer shows contacts when a key is pressed...

    I turned my phone off and on.
    Now when I press a key, no contacts appear. Before I would press a letter, some names would pop up with that letter, I could then scroll and call. 
    Now I have to go to contacts -> press letter -> scroll -> etc
    How do I reactivate this functionality?

    Make sure you don't have duplicates in your contacts and turn on contact search in the phone settings.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • My imac screen shows insert boot disk and press any key

    I need help please. just tried to install microsoft windows 8 on my new imac....used bootcamp and i got a message asking to take out the disk, reinsert and boot. however i dont have any boot disk...the windows install cd is stuck in the player and it wont come out

    Please re-post in the Boot Camp forum, that is where the Windows and Boot Camp guru's tend to be. BTW unless you are running 10.8.3 Windows 8 will not run in Boot Camp.

Maybe you are looking for

  • Portal crashes and intermittant problems..urgent help needed.

    Portal Runtime Error An exception occurred while processing a request for : iView : pcd:portal_content/administrator/super_admin/super_admin_role/com.sap.portal.system_administration/com.sap.portal.system_admin_ws/com.sap.portal.themes/com.sap.portal

  • Need to get mass info from my XML library file

    Hi. A while ago I was trying to set up my computer so that a user other than me could play my iTunes songs but not be able to delete them. In the course of that I somehow moved a file I shouldn't have and iTunes lost all my info. I finally managed to

  • SQL 2005 connection

    Hi, Well for some reasons I don't really know because SAP doesn't help me a lot on this. I just reinstall all my SAP software over SQL2005.  Everything was nice, and everything works fine from SAP and SQL2005 Now I'm loading the project I was used to

  • Problem deploying web service to OAS 10.1.2.3

    Hello! I'm having an issue deploying a web service to Oracle Application Server (OAS) 10.1.2.3. I completed the tutorial to create a web service here: Link: [http://www.oracle.com/technology/obe/obe1013jdev/10131/devdepandmanagingws/devdepandmanaging

  • Special characters when reply to an email

    hello, When i reply to an e-mail address with special characters, it cuts the e-mail address in half. For example: Richárd.décharté[email protected] . it cuts the word where the special character is typed so you can't reply. Or you have to type the w