Mouse click not always recognized

Adobe is slow to recognize my mouse clicks when selecting items. For example I will have selected 1.jpg, then get ready to work on 2.jpg, but I will have to click three to four times before 2.jpg will show in my properties window. Although I can see it is selected in the main window, any work I will do gets applied to 1.jpg. I do not have this issue with any other adobe products.

How big are your images?
Are you working with valid code?
http://validator.w3.org/
(='.'=)
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/

Similar Messages

  • Mouse clicks not recognized?

    I have a 20" iMac w/ the most recent updates. In the past couple of days I have a problem with mouse clicks not being recognized. It seems to happen when I begin to fill in a text field either in Safari or the Finder (like trying to enter username/password, to authenticate in the finder, etc) The wierd thing is that this only happens on one of the two user accounts on this computer. I have also created a new user account and it is fine. I've looked for applications that are different, but can't find any. I have repaired permissions and repaired the disk through disk utility.
    I am at the end of my rope! Please help!

    I somehow managed to fix it, for now. I think I ended up resetting the PRAM. I gave up trying software solutions and unplugged everything, including the iMac's power cable, and cleaned up the mess of cables behind my desk because I needed some time to think. After starting up the computer, everything seems to be fine. If the problem comes back, I'll post here again. Thanks for the suggestion!

  • Ipod is not always recognized

    Nano is not always recognized by computer and only recognized by itunes immediately after connecting (the device icon on the right goes away seconds after connection).  Any helps?

    I had this problem when I first got mine...but sorry, I don't remember what I did to fix it.
    I might of done something like go to start icon, then computer, then devices with removable storage, then did something from there. Try googling it and see if someone else had the same/simular problem.
    Sorry!

  • MBA Mouse clicks not registering?

    I've got a weird one with my son's MBA (2008), running Mountain Lion. It's not recognizing mouse clicks from either trackpad or external Magic Mouse. This is happening from boot- normal boot, safe boot and booting into tools menu.
    He was playing minecraft when it went out and nothing I've tried since has got it back- basically lots of reboots and reseting NVRAM and SMC.
    I don't have a wired USB mouse to test that with at home, and I don't have an external USB drive with enough space to create a mountain lion rescue disk at them moment- at least not one I'm milling to mess with (backup drives). I'll pick up an 8GB thumb drive later and give that a try however.
    Any thoughts appreciated- likely a trip to the genius bar, but that's best avoided- closest one is an hour away.

    This is kind of a dirty rotten problem.  Your submenus are inside the main menu right?  So when you click on a submenu item (i.e. menu1A), you are also clicking on the main menu (menu1).  Technically both click events fire (menu1a is first, menu1 is second). A better way to think about it is:  If you are doing construction on your bathroom you are doing construction on your house since the bathroom is in your house.  Confusing, right?
    To fix this, you want to "cancel" the click event for menu1 if you click on one of the sub menu items. Add this line into each of your sub menu functions:
    e.stopImmediatePropagation();
    So one of your functions would look like this:
    function onClick1A(e:MouseEvent):void {
    e.stopImmediatePropagation();
    SWFAddress.setValue("cycling/amgen2010/");

  • Page back keyboard and mouse shortcut not always working

    On some pages the "go back and forward one page" functions of my mouse do not work.
    Also the keyboard shortcuts ALT+left arrow and ALT+ right arrow give the same issue.
    The buttons on the toolbar are functioning like they should however.
    The alternative keyboard shortcuts backspace and SHIFt+backspace also work.
    (but not when using google because google thinks I want to type so this is no workaround for my programmable mouse)
    I tried on another computer and on that the keyboard shortcuts also dont always work.
    (but mouse does, it's a cheapy mouse without software, go figure)
    I can reproduce the page on which the shortcuts do not work.
    Just go to google or any other website and then go to:
    http://www.imdb.com/title/tt2741602/?ref_=nv_sr_1

    Hello,
    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Webi: Mouse clicks not working

    Hi
    I am using BO XI 3.1, Webi 12. .1.0.882 client. It is not responding to mouse clicks although I can use keyboards to open the universe e.g.(even for logon).
    Any ideas why is this happening and how to sort this?
    Thanks for all help.

    I have the same problem some times.
    This is going to sound crazy, but try this:
    1. Lay the mouse down like you would if you were going to use it.
    2. Use you index finger and "bang" on the mouse like you were mad at it. Hit it where the primary button (left side for me) is. Don't be too aggressive.
    3. It should work. It has always worked for me.
    4. It also helps to clean the track ball. I just run the track ball back and forth on my jeans.
    Good luck!
    P.S. I do not think this will void any warranty, just don't tell Apple!

  • Mouse clicks not detected on JTabbedPane

    Hi all,
    I have a JPanel placed inside a JTabbedPane. I want to double-click on the JPanel and bring up a JDialog. This works fine if the JPanel is not in a JTabbedPane, but if it is on a JTabbedPane, then the mouse clicks are not detected. I'd greatly appreciate any help you can give me.

    Here is a sample program that seems to work:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    public class TestInternalFrame extends JFrame
         public TestInternalFrame()
              JDesktopPane desktop = new JDesktopPane();
              setContentPane( desktop );
              JInternalFrame internal = new JInternalFrame( "Internal Frame" );
              desktop.add( internal );
              internal.setLocation( 50, 50 );
              internal.setSize( 300, 300 );
              internal.setVisible( true );
              JTabbedPane tabbedPane = new JTabbedPane();
              internal.getContentPane().add(tabbedPane);
              tabbedPane.setPreferredSize( new Dimension(300, 200) );
              JPanel panel = new JPanel();
              tabbedPane.add( "Empty Panel", panel );
              panel.addMouseListener( new MouseAdapter()
                   public void mouseClicked(MouseEvent e)
                        System.out.println(e.getClickCount());
         public static void main(String args[])
    TestInternalFrame frame = new TestInternalFrame();
    frame.setDefaultCloseOperation( EXIT_ON_CLOSE );
    frame.setSize(400, 400);
    frame.setVisible(true);

  • My apple bluetooth mouse is not being recognized by my macbook air - and it was yesterday!

    My apple bluetooth mouse was working perfectly with my macbook air until I had to change the batteries.  Now it is not discoverable and I really can't operate without a mouse.  I tried another logitech usb mouse and that was not discoverable either.  Please help!

    Today, when I turned on my iMac, neither my bluetooth mouse or keyboard were recognized. I had to connect my old USB keyboard-mouse to type this message.
    And yes, I restarted my iMac, didn't help.
    Can someone help?
    PS: Barry, "resetting SMC" doesn't help

  • Mouse click not working

    i set up a new battery, i pressed command D without not cause. After that my mouse is not working, its noly moving and scroll. Does not CLick.what to do now?

    Please reset the SMC Control, Apple explains how in:
    http://support.apple.com/kb/ht3964

  • Submenu mouse clicks not registering

    I really don't know half of what I'm doing when it comes to Action Script 3. Through a lot of trial and error, I finally have my menu with submenus displaying properly, but just not functioning the way that I have intended. The submenu items appear when a mouse over registers on the mainmenu item. The submenu mouse rollovers are registering correctly because the right content is displayed and the alpha channel changes are registering. The problem is with the mouse clicks for the submenu items. I don't understand why but a mouse click on a submenu button is registering as a click on the mainmenu item, not the submenu item. Could someone please explain to me why the rollover function is working and not the mouse click, and what I need to do to fix my code? I hate to admit it, but I am really clueless here.
    Here is my website:  www.deyonjonson.com
    And here is the relevant part of my code:
    SWFAddress.addEventListener(SWFAddressEvent.CHANGE, SWFAddress_changed);
    menu1.alpha = 0.5;
    menu1.buttonMode = true;
    menu1.useHandCursor = true;
    menu1.menu1A.visible = false;
    menu1.menu1B.visible = false;
    menu1.menu1C.visible = false;
    menu1.addEventListener(MouseEvent.ROLL_OVER,onOver1);
    menu1.addEventListener(MouseEvent.ROLL_OUT,onOut1);
    menu1.addEventListener(MouseEvent.CLICK,onClick1);
    menu1.menu1A.addEventListener(MouseEvent.ROLL_OVER,onOver1A);
    menu1.menu1A.addEventListener(MouseEvent.ROLL_OUT,onOut1A);
    menu1.menu1A.addEventListener(MouseEvent.CLICK,onClick1A);
    menu1.menu1B.addEventListener(MouseEvent.ROLL_OVER,onOver1B);
    menu1.menu1B.addEventListener(MouseEvent.ROLL_OUT,onOut1B);
    menu1.menu1B.addEventListener(MouseEvent.CLICK,onClick1B);
    menu1.menu1C.addEventListener(MouseEvent.ROLL_OVER,onOver1C);
    menu1.menu1C.addEventListener(MouseEvent.ROLL_OUT,onOut1C);
    menu1.menu1C.addEventListener(MouseEvent.CLICK,onClick1C);
    function SWFAddress_changed(e:SWFAddressEvent) {
    switch (e.value) {
    case "/index":
    gotoAndStop("main");
    break;
    case "/cycling/amgen2010/":
    gotoAndStop("cycling_amgen2010");
    break;
    case "/cycling/amgen2009/":
    gotoAndStop("cycling_amgen2009");
    break;
    case "/cycling/amgen2008/":
    gotoAndStop("cycling_amgen2008");
    break;
    function onOver1(e:MouseEvent):void {
    my_ssp.loadContent(0);
    SWFAddress.setStatus("index");
    menu1.alpha = 1;
    menu1.menu1A.alpha = 0.5;
    menu1.menu1B.alpha = 0.5;
    menu1.menu1C.alpha = 0.5;
    menu1.menu1A.visible = true;
    menu1.menu1B.visible = true;
    menu1.menu1C.visible = true;
    function onOut1(e:MouseEvent):void {
    SWFAddress.resetStatus();
    menu1.alpha = 0.5;
    menu1.menu1A.visible = false;
    menu1.menu1B.visible = false;
    menu1.menu1C.visible = false;
    function onClick1(e:MouseEvent):void {
    SWFAddress.setValue("index");
    // menu1A
    function onOver1A(e:MouseEvent):void {
    my_ssp.loadContent(1);
    SWFAddress.setStatus("cycling/amgen2010/");
    menu1.alpha = 1;
    menu1.menu1A.alpha = 1.0;
    menu1.menu1B.alpha = 0.5;
    menu1.menu1C.alpha = 0.5;
    function onOut1A(e:MouseEvent):void {
    SWFAddress.resetStatus();
    menu1.alpha = .5;
    menu1.menu1A.alpha = 0;
    menu1.menu1B.alpha = 0;
    menu1.menu1C.alpha = 0;
    function onClick1A(e:MouseEvent):void {
    SWFAddress.setValue("cycling/amgen2010/");
    // menu1B
    function onOver1B(e:MouseEvent):void {
    my_ssp.loadContent(2);
    SWFAddress.setStatus("cycling/amgen2009/");
    menu1.alpha = 1;
    menu1.menu1A.alpha = 0.5;
    menu1.menu1B.alpha = 1;
    menu1.menu1C.alpha = 0.5;
    function onOut1B(e:MouseEvent):void {
    SWFAddress.resetStatus();
    menu1.alpha = .5;
    menu1.menu1A.alpha = 0;
    menu1.menu1B.alpha = 0;
    menu1.menu1C.alpha = 0;
    function onClick1B(e:MouseEvent):void {
    SWFAddress.setValue("cycling/amgen2009/");
    //menu1C
    function onOver1C(e:MouseEvent):void {
    my_ssp.loadContent(3);
    SWFAddress.setStatus("cycling/amgen2008/");
    menu1.alpha = 1;
    menu1.menu1A.alpha = 0.5;
    menu1.menu1B.alpha = 0.5;
    menu1.menu1C.alpha = 1;
    function onOut1C(e:MouseEvent):void {
    SWFAddress.resetStatus();
    menu1.alpha = .5;
    menu1.menu1A.alpha = 0;
    menu1.menu1B.alpha = 0;
    menu1.menu1C.alpha = 0;
    function onClick1C(e:MouseEvent):void {
    SWFAddress.setValue("cycling/amgen2008/");
    Any guidance on how to clear this up would be greatly appreciated.
    Thank you!

    This is kind of a dirty rotten problem.  Your submenus are inside the main menu right?  So when you click on a submenu item (i.e. menu1A), you are also clicking on the main menu (menu1).  Technically both click events fire (menu1a is first, menu1 is second). A better way to think about it is:  If you are doing construction on your bathroom you are doing construction on your house since the bathroom is in your house.  Confusing, right?
    To fix this, you want to "cancel" the click event for menu1 if you click on one of the sub menu items. Add this line into each of your sub menu functions:
    e.stopImmediatePropagation();
    So one of your functions would look like this:
    function onClick1A(e:MouseEvent):void {
    e.stopImmediatePropagation();
    SWFAddress.setValue("cycling/amgen2010/");

  • BD-re not always recognized in PS3

    I find about every third time I burn a project onto TDK BD-re media with Encore using the Pioneer 202 burner the disc will not be recognized by the PS3.
    However I can then burn data on the same disc with Nero 8. This will be recognized by the PS3. When I reburn the project in Encore on this same disc, it will usually work.
    I have had to go through this process multiple times. Is there a bug in Encore where it does not always properly erase a BD-re?

    hammer3 wrote:
    I read somewhere in a posting for related issues that I should disable Device Manager, which I did. I'll try enabling it.
    No no no.... Disable the power management options using the Windows device manager.  Big difference
    Jeff

  • Mouse Clicker Not Working

    Hey
    You know how the mouse clicker is supposed to pop back up after you click it? Well only one side of my clicker does. The other side will not pop back up. I believe my laptop is still under warranty. If I take it into the Apple store can they fix it?
    Thanks

    If you are under warranty, just take it back and Apple should fix it.
    If you are out of warranty, I'm sorry no answer for that.

  • Mouse clicks not working

    Hello,
    I am managing a mac pro (leopard) from a macbook (leopard) using remote desktop 3.2. Often when I control the mac pro, and enter a user session the mouse clicks on the managed computer behave incorrectly. A normal click corresponds to a click with a side button (the ones that show all the windows on screen). When this happens I have no other solution than to reboot the managed machine because I can't control it with the mouse. (can't select anything)
    Has this happened to anyone else ?

    Oops. Doing the same thing again. If I disconnect/reconnect the mouse, the buttons get switched to the right position. After that log out/in and the buttons are again the other way around. To do a click have to press the command key while pressing the mouse button.

  • Mouse clicks not working on published air app, works fine when debugging/testing

    So I have an issue where when debugging my Air application, it runs fine and mouse clicks work and everything.  When I publish the application and install it, it plays fine but clicking does nothing.
    We have an older version which is working when we publish it and we're trying to add things in one step at a time, but I figured I'd see if anyone else has had this issue.  A bit frustrating.
    Thanks!

    FIXED!!!!
    We're using Dropbox to share files and it turns out that two people having project open at same time is a bad idea when doing final publish!  It creates conflict files and effects the final package or something of that nature.
    Glad we got that one figured out!

  • Magic Mouse click not working

    I have a magic mouse, with a MBP and 10.6.1 and the wireless mouse update installed.
    The mouse more or less works if "Secondary click" is checked. If I uncheck it, clicking does nothing. The mouse moves and scrolling works, but clicking has no effect.
    Also with "Secondary click" checked, if any part of my hand is touching the top surface of the mouse, I get a right-click when I click - makes the grip kind of awkward.
    Tried re-installing the software update.
    Any ideas? Thx.

    Not sure why it worked this time, but I deleted
    com.apple.driver.AppleBluetoothMultitouch.mouse.plist
    from the User preference folder again, and now the mouse is behaving as normal. I did not touch the .globalpreferences file.
    I did clean all the system/user caches (using Cache Out X), and then deleted this file again, but now the behavior seems correct
    - with Secondary Click deslected, the surface acts as one big single click button
    - with Secondary Click selected, it acts as a two button mouse
    - in Secondary Click mode, resting your second finger on the contexual side surface while clicking on the single click side surface does not interfere with the single click as it had before
    - in Secondary click mode, you need to lift your finger off the single click side when clicking the contextual button side, or it will not register as a contexual click. I presume this is expected behavior, as it is physically a one-button mouse, and Apple opted for a two-finger click to be interpreted as the more common single click request.
    Hope this helps some

Maybe you are looking for