Have to click multiple times on my trackpad

This is my school laptop that I use every year since last year. I had a few problems last year with this laptop but they were enventually fixed. This year my computer was fine until one day I couldn't open my folders on my desktop as easily. I used to just double click very easily and they would open. Now I have to click on each folder 5-6 times before it opens. I restarted my computer about 3 times yesterday and nothing helped. Hopefully someone can help me with this problem because I'm really not in the mood to get my computer re imaged.

My first thought is that the trackpad needs to be adjusted or that it needs to be replaced. Adjustment can be done quickly at the genius bar, replacement takes a couple days. Open System Preferences and select the trackpad. The first option you see should be 'tap to click' which will let you simply tab the trackpad to simulate a click. If that works you can be pretty certain it is mechanical and requires a trip to an Apple store.

Similar Messages

  • Have to click multiple times to select in sync window

    I am having a problem syncing my devices (iphone 4, ipod nano 6th).  In iTunes when I go to the sync screen for either device and I click on the artists they do not get a check mark next to them.  If I click multiple times (some times as many as 6 or 7) then eventually, I get a check mark and they sync.  I have this problem with Artists, playlists, genres.  I do not have this problem with albums.
    How can I correct this?
    Also, for my iphone it is trying to sync a playlist which I no longer have on my computer.  In some file the data to sync is corrupt.
    Thanks for your help.

    My first thought is that the trackpad needs to be adjusted or that it needs to be replaced. Adjustment can be done quickly at the genius bar, replacement takes a couple days. Open System Preferences and select the trackpad. The first option you see should be 'tap to click' which will let you simply tab the trackpad to simulate a click. If that works you can be pretty certain it is mechanical and requires a trip to an Apple store.

  • Have to click multiple times to open PDF files with Reader XI

    Having issues opening pdf files in Adobe Reader XI.  Many times I have to double click 3 or 4 times before the document will display on my screen.  This is even more of an issue when trying to open a pdf in a browser, and will often cause IE to crash.  Every time I try to open a pdf file there is a process that is started, so I end up with a stack of AcroRd32.exe processes running with nothing to show for it.  I tried re-installing Reader, removing Acrobat 8 Standard, etc with no success.  OS is Windows 7, SP1.  Any help out there?

    You can't have both Acrobat 8 and Reader XI installed at the same time. They're not compatible with one another. Acrobat XI and Reader XI is fine, though.
    Also, Acrobat 8 is not compatible with Windows 7...

  • When I go to use the paint bucket to fill something in I have to click multiple times to get full opacity

    I have the newest photoshop, I didn't have this problem before. It used to be 1 click and it would fully fill.
    Thanks.

    Try resetting the tool by right clicking here

  • 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

  • How to avoid a user to click multiple times on a link

    Hi,
    I have a pageflow with an action which can be called by clicking on a link on the portal. When a user clicks on this link an ejb is called, transaction is started, ...
    If the user clicks on the same link multiple times I want to send him a message after the first click that the request is being processed.
    How can I do this?
    cheers
    fifty

    Hi fifty,
    One way to not let a user click multiple times is by disabling the button by the use of JavaScript function. That way the Button is greyed out until the page is refreshed.
    Hope this helps,
    Mansoor

  • I am using Windows 7 Home Premium 64-bit OS.  I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installa

    I am using Windows 7 Home Premium 64-bit OS.I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installation process it gave me an error message that said: 
    Runtime error! 
    Program C:\Program Files\iTunes.exe
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I quit the installation, uninstalled iTunes and rebooted my computer.  I now receive a similar message with a slight difference:
    Runtime error! 
    Program C:\Program Files (x86)...
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I did not leave anything out from the error message.  It doesn't point to a specific file, it just ends with "(x86)..."  Every time I boot up my computer, this error message pops up on my desktop.
    How do I repair this issue?  I have found multiple suggested solutions but am unsure which one is the best, and I don't want to try a bunch of different things for fear I may make the problem worse.  I would like to try and fix this myself if possible but I need to know if that is really possible or if I need to take my computer to someone for repairs.  Any suggestions will be greatly appreciated!!

    Hi lustyln,
    I'm having a little trouble understanding all of what you are trying to explain. From what I can tell, it sounds like your PC has a lot of software problems and you want to know what is supposed to be there and what isn't.
    For reference, here are your product specifications:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01893242&lc=en&product=4043282
    To get your PC software back to how it was when it was first purchased, run a system recovery:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01867418&lc=en&product=4043282
    I hope this helps.
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

  • HT202157 I just updated software for my Apple TV device; I am trying to set up internet access via Wi-fi; I keep getting the message my internet password is incorrect even though I know the code is right and have tried it multiple times. Any suggestions?

    I just updated my software for Apple TV; I keep getting the message that my password is incorrect, I know the code is correct and I have tried it multiple times. Apple TV worked fine before the upgrade. Any suggestions?

    Then contact iTunes:
    Apple - Support - iTunes - Contact Us

  • TS4268 I am trying to facetime on my mac but keep getting the message "The server encountered an error processing registration. Please try again later." I have gotten this multiple times. how can I get around this?

    priority:
    I am trying to facetime on my mac but keep getting the message "The server encountered an error processing registration. Please try again later." I have gotten this multiple times. how can I get around this?
    i also have tried downloading "FaceTap" application to get facetime on my ipad and failed too. i thought i failed because i couldnt download latest 6.0 iOS or later. i downloaded latest software update for iOS but was 5.8 I think

    Wait until Apple fix it. See: http://www.apple.com/support/icloud/systemstatus/

  • I have reinstalled itunes multiple times but apple mobile device doesn't download. how can i fix this or download apple mobile device

    I have reinstalled itunes multiple times but apple mobile device doesn't download. how can i fix this or download apple mobile device

    Type "apple mobile device service" into the search bar at the top of this page by "Support" and read the resulting articles.

  • My apple tv, all of a sudden, is no longer able to connect to my computer.  I have restarted EVERYTHING, multiple times, still not working.

    My apple tv, all of a sudden, is no longer able to connect to my computer.  I have restarted EVERYTHING, multiple times, still not working.

    Welcome to the Apple Community.
    Check your store location is set correctly, if this doesn't help, try restarting the Apple TV by removing ALL the cables for a 30 seconds.

  • HT1600 After updating my apple tv last night, it has stopped working. The light blinks but there is no input to the tv. I have reset it multiple times, have unplugged it, and it still doesn't work. What can I do?

    After updating my apple tv last night, it has stopped working. The light blinks but there is no input to the tv. I have reset it multiple times, have unplugged it, and it still doesn't work. What can I do?

    connect it by usb to your computer and restore it's firmware from itunes on the very same computer

  • Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    Sign into iCloud pop-up message on iPad2 won't disappear off screen, have reset password multiple times but it is saying incorrect. Please HELP unable to use iPad as message appears every few seconds, iPad was working fine until now.

    After the restore did the phone work properly for a while? Say, a day or so?
    If so it is possible you have an app that doesn't let go of memory properly. I reboot my iPhone ( hold sleep/wake and hole till you see the apple logo) every few days. This resets the memory. The iPhone OS has doesn't seem to mange memory very well yet. So a reboot will help with that. I have had my phone almost slow to a stop before I started rebooting. Always reboot after installing a new app. Also do you close all pages in Safari when you are done? This is a good practice. Safari will run in the background and use processor time and drain your battery quicker. Create a new blank page then close all others when you are done browsing for a while. I have also found that certain web site that have animated images like weather maps will turn the phone into molasses. As soon as i close that page it gets faster.
    If all of the above have no effect then as Tamara said it is time for a trip to the Genius bar.
    Good luck

  • HT5655 I have downloaded the latest flash for my mac (running mountain lion 10.8.2) multiple times and have uninstalled it multiple times, but it still says blocked plug in. Im using firefox but i need safari back. any help?

    I have downloaded the latest flash for my mac (running mountain lion 10.8.2) multiple times and have uninstalled it multiple times, but it still says blocked plug in. Im using firefox for now. any help? Firefox and safari are like night and day. i just want safari back.
    Thanks.

    Adobe support article.
    Adobe Flash Player Troubleshooting
    Adobe Flash Uninstaller

  • When I open the Adobe reader file, I have to click several times

       I have a problem in this Adobe Readear program.
    When I open the file, I have to click several times and then the file open.
    It does not open the file at a time.
    I install again and again. But it doen't get better.
    What do I do?
    I would appreciate a prompt reply.

    I don't know what is causing that; all I can do is guess.
    Can you keep Task Manager (Processes tab) open in a smaller window, then double click on a PDF file in another window.  Does AcroRd32.exe come alive for a very short time, then disappear?
    You could also use a Tool like Process Monitor to find out what's going on.  Set the filter to Process Name = AcroRd32.exe before you start.

Maybe you are looking for

  • Broadband there but not working!

    Hi, I moved home and it has taken BT 7 months yes 7 months to re connect our broadband due to engineering work. ive been given no idea how long this is going to take so you can imagine when l recieved a text message today to say it was up and running

  • Accounting Document after Goods Receipt.

    Hi, I have put to condition types ZVAT & ZBTT. I dont want this to be shown in the accounting document after goods receipt. It should show only Inventory account & GR/IR clearing account. Right now ZVAt & ZBTT has accounts whose posting keys are 40 &

  • I've made a fillable form and need javascript assistance

    I've created a fillable form (for internal company use) and would like certain fields to auto fill based on what other field values are. Here is snap shot of the form Here is an explanation of the table. The top fillable row: model = user fill in mod

  • Access iTunes songs from external drive of old computer

    Hi, My old laptop's video chip died and it made more sense to buy a new computer. The hard drive was fine, so I had it put into an external case. Unfortunately, there was music from CDs in that iTunes that I didn't have in my iPod. I installed iTunes

  • Windows 7 Enterprise N SP1 64bit - inability to install Windows Media Player

    Hello,  For last two days I am strugling to install WMP on to W7 ENT SP1 N 64bit.  This is now driving me crazy - thats what I have done till now : I have two machines installed with Win 7 Ent N SP1 64 bit.  On both there is no possibility to install