Click button not working

Have a white MacBook with separate click button and the click button is non-responsive. Yes, I've bought a new keyboard/top assembly and replaced it but the click button is STILL unresponsive. Tapping works fine and using a mouse works normally as well but the click button isn't functioning at all. Is there another hardware component I can fix or replace other than the keyboard/top assembly?

Hello Michael,
If your Macbook has a removable battery take it out and run it from the mains power.
If it works OK it probably means that your battery has become swollen and is pushing up on the bottom of the track pad and stopping it working correctly.
You will need a new battery. Go to a genius bar and you may get it replaced for free depending on the number of cycles it has done. 300 cycles seems to be the magic number. Over that and you will probably have to pay. Under that and you may be lucky.
Hope this helps,
Alan

Similar Messages

  • Left click button not working on mouse

    Using an HP Pavillion g series notebook with windows 7 and all of a sudden my HP wireless mouse left click button doesn't work. checked to see if it was clean, changed the battery too.  Right click buttonis working as left click now. Driver software is upto date.  Only 2 years old with light use.  What's up?

    I also get what looks like tiny barcodes to the top right of my mouse pointer.
    That is usually a software corruption problem.
    Disk Utility ( Repair Disk ) is a good place to start.

  • Click boxes and buttons not working in Captivate 3 published projects

    I really, really, hope that someone can help me...
    we are migrating from Centra/Saba LMS to Connect Pro LMS and while taking our "old" SCORM projects and posting them to the Connect Pro server we have encountered an issue...and the reason it's very hard to trouble shoot is that it's not all of the projects....??
    Once a project is pulished none of the buttons or click boxes are working - for instance we use a play button on the frist slide for students to enter the course - you click it nothing happens (except when you mouse over the button it does change color)...same with the click boxes - I can use the progress bar to move froward but anything I click just doesn't respond...
    Has anyone encountered this? and I hope know something we can do?
    THANKS SO MUCH,
    Jen

    Do your published projects work outside of your LMS?
    Or is it just inside the new LMS that it isn't working?
    Usually buttons and click boxes not working is because your slides are pausing before the button becomes active.
    What version of Captivate and Flash are you using?

  • IPhone 4 middle button not working

    Having problems with the iPhone 4 middle button not working anyone else with the same problem ?
    Thanks

    i have the same problem. since you're software is already iOS 5.1 go to settings>general> accessibility>the settings after triple click home, i forgot what is it called but that would help.

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • Back Button not working in FireFox 4

    Is anyone else having trouble with the back and forward buttons not working in FireFox 4? I installed 4 on an XP desktop and a Vista 64 laptop, and the forward and back buttons don't work on either installation. Does anyone know a fix for this? I tried deleting the "places" files in the profile and that does not help.

    I am having a problem with the back button also in Firefox 4. Firefox forgets the 1st page in any new session or tab. If I open a tab to say bbc.com and navigate to guardian.com I can't click the back button to get back to bbc.com.

  • Back button not working in safari

    back arrow button not working in safari.

    Safari 6
    Empty Caches
    1. Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        "Develop" menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    2. Quit Safari if open.
        Option click the "Go" menu in the Finder menu bar.
        Select "Library" and then "Caches".
        Look for the folder 'com.apple.Safari"
        Right click "com.apple.Safari" and select "Move to Trash"
        Relaunch Safari.

  • Lumia 720 volume down button not working

    Hey buddies, I'm using lumia 720 and often i get this volume down button not working.
    I changed the button by giving it in nokia care for 3times and still im facing the same problem.
    And also noticed that this is happening to most of the lumia 720's.
    so kindly look into it and rectify the problem as soon as possible.
    If there is any solution for this, kindly reply me.
    Thanks in advance...!

    Your only solution would be to return the unit back to nokia care for inspection,if there is a recurring issue with this im sure nokia would be aware of it now,and it could be a slight manufacturing defect which again would be looked into.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Help button not working on firefox.How to fix?

    help button not working.

    Hello,
    Lets give Firefox some Tuneup.
    The Refresh feature (called "Reset" in older Firefox versions) can fix many issues by restoring Firefox to its factory default state while saving your bookmarks, history, passwords, cookies, and other essential information.
    '''''Note:''' When you use this feature, you will lose any extensions, toolbar customizations, and some preferences.'' See the [[Refresh Firefox - reset add-ons and settings]] article for more information.
    To Refresh Firefox:
    # Open the Troubleshooting Information page using one of these methods:
    #*Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''. A new tab containing your troubleshooting information should open.
    #*If you're unable to access the Help menu, type '''about:support''' in your address bar to bring up the Troubleshooting Information page.
    #At the top right corner of the page, you should see a button that says "Refresh Firefox" ("Reset Firefox" in older Firefox versions). Click on it.
    #Firefox will close. After the refresh process is completed, Firefox will show a window with the information that is imported.
    #Click Finish and Firefox will reopen.
    Did this fix the problem? Please report back to us!
    Thank you.

  • Scrollable frames. Buttons not working.

    Hello.
    I have a problem with buttons in the scrollable frames.
    I have a slideshow with a thumb's. Each thumb consist of MSO (non active icon and active icon) and clear frame - button to that MSO and to slide foto. The thumb's grouped and placed into the frame with horizontal scroll overlay effect.
    That frame placed into another frame-pull out tab, which have vertical scroll effect. And when I pressed the button, slide fotos changes correctly, but button MSO not working.
    See files from dropbox --  https://www.dropbox.com/sh/rsbf1jto3a39jug/IVcQxaYJOW
    Sorry for my english. I need help very much.
    Thanks.

    Hi,
    I understand that I can use two 'states'  of the buttons. And I tried it. But. Buttons renditions are raster images. And on the retina display we had bad quality. My target was to create vector buttons. With good quality on both displays.
    Any suggestions?
    04.10.2013, в 12:03, Christophe_Quinzoni <[email protected]> написал(а):
    Re: Scrollable frames. Buttons not working.
    created by Christophe_Quinzoni in Digital Publishing Suite - View the full discussion
    Hi (again),
    It seems that you built your stuff in a very complicated way.
    First, try to make simple!
    You mixed MSO and buttons functions. Useless and unfonctional.
    Yous should use only button panel, with two different 'states' ('Normal' and 'Clic').
    See below (no MSO function used at all for the button):
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468602/445-605/Button_ 1.jpg http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468603/448-605/Button_ 2.jpg
    Use the layer panel to easily select the objects you want to modify.
    Please find your file here: https://dl.dropboxusercontent.com/u/46115208/slideshowButton.indd
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5735625#5735625
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5735625#5735625
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5735625#5735625. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Buttons not working correctly/consistently

    I am working with a template that has 5 buttons on each slide Back, Next, Help, Pause, and Play
    The Help button is set up to Jump to Slide with the correct target, but for some reason it doesn't work. In fact, sometimes when I click Pause and then click the Help, it actually resumes instead of  jumping to the slide.
    This is pretty basic stuff, so I am at a complete loss. The only thing I am wondering about is whether the fact that the lesson was originally done in Captivate 5 could be causing an issue.
    Here's the way the action is set up.

    I have had issues with buttons not working properly in Captivate 4. When it happens, it is completely random and not consistent. To get my buttons to work properly, I usually just exit out, and go back to the project and then they work.
    Sometimes it takes me going back the next day for them to work. There's no rhyme or reason to it. The settings are all correct. I don't change a thing. I save, and go back to the project and the button is working all of a sudden. At least that has been my experience the last couple of months.

  • Iphone4 home button not working

    iphone4 home button not working properly,
    needs 6-8 times repeated clicks to get it work,
    can anyone help please.

    bring it to your telco or apple store you bought the iphone from...
    the telco might charge you if you are out of warranty...

  • Central button Not working ..... now ? 5 buttons not working !!! What can i do?

    Hello all,
    I bought my blackberry torch in September 2011  and two months ago the center button was problem (bellow the screen)  and not working at all. so I gave it to a company to fix it and told me to round 45 euros to fix it. also told me that it will be ready in the new year because they would have holiday. The man there made a report saying the problem with the center button (only had this problem, I note) and now they brought me back and told me  they can not fix it and they send it to blackberry but  even they could not fix it.  Enable my phone  front of them and did not operate any button of 5 bellow the screen (two to the right of the center button that had problems and two to the left). I told them to send it back to the technician because when I gave to you to fix it only one button was not working and now none of the 5.
    After nearly two months they brought me back and told me ''we can not do anything ....'' So,five buttons not working.
    What can I do in this case????
    Not got it from there yet to see what I can do or what can I say?
    I think I'm right. It is reasonable to I want my phone back with only one button broken as I gave it to them and not with extra 4 buttons not work.
    Sorry for my english, I hope you understand  

    A battery pull does nothing to improve the performance of the battery, it clears your phone's cache of unwanted fragments that have accumulated and this improves the performance of your phone.  I doubt it's as simple as this but it wouldn't be the first time I've heard of a service centre charging money for repairs when a simple battery pull would have done the trick.
    When you get your phone back (working properly or not), I suggest trying a battery pull. 
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • IPod mini click wheel not working

    Tuesday i was listening to my ipod and it worked just fine. the click wheel was working and everything was okay. i put it on my ihome to charge that night and left it there until i got home from school the next day. it worked fine in the morning(wednesday) when my alarm went off. wednesday night i took it off my i home and my click did not work at all. the buttons work but i can't scroll thru my songs or change the volume. it still has it's original battery so i know that's not what could have damaged it. between the time that it did work and the time i discovered it didn't it was not dropped or exposed to any extremes. i have reset it several times and restored to the factory setting and nothing has worked. please help!! i have had it for almost 2 years so it's out of warranty. is there anything i can do to fix it myself? i don't have the money to service it.

    Hi to both of you, and welcome to Apple Discussions!
    Well, if resets and restores are not helping, the clickwheel is malfunctioning. If you don't have the money to have Apple service it, would you be able to buy a new part?
    If you can't buy a new part... Your only option is to open the bottom of the mini, slide the clickwheel out, dissasemble the clickwheel, put it back together, and reconnect it. It may sound like a lot, but it's pretty easy. I've had to do it on my blue mini, but realize that this may not solve the problem and if it does, last forever. I finally had to get a new clickwheel. Visit: theipodmini.blogspot.com for instructions, which is my site dedicated to the mini.
    -Brian

  • My ipod classics clicker will not work

    my ipod classics clicker will not work so i can not turn it off or on i cant play music or anything please help

    Have you checked the 'Hold' button at the top left of your Classic to make sure it didn't get bumped into the ON position? 
    If it's been moved to the right and you can see the red indicator, then 'Hold' has been switched on and none of the buttons on the iPod will work.
    What happens if you plug your iPod into a charger or connect it to iTunes?
    BW

Maybe you are looking for

  • MRP Run error " Schedule Lines not generating properly"

    Hi Folks, I am facing a typical issue with MRP Run. Every time when I am running the MRP for a particular material I have made settings such that Schedule lines to be generated by maintaining the Source list and MRP relevancy as 2 in source list. Als

  • Local hyperlink in JEditorPane

    I set a HTML page from String variable to JEditorPane. I;ve got som hyperlinks to this page like <A NAME="AAAAA"> Link I need to handle such a link. I set editable to false and implemented hyperlink listener, but event returns null URL when calling g

  • Capture audio from separate device

    Is it possible to capture from a camera, but record the audio at the same time from a different audio device, e.g. soundcard? (My camera does not have a separate audio input with reasonable quality, so one could save from having 2 separate files by r

  • Installing CS5 on Windows 8

    Transfering my probrams from old laptop Win 7 to new Win 8. When I try to install Win 5, from the same files that I had installed it from on windows 7 it has the error: "Please try restarting your system and installing again. Installer failed to init

  • Looking for h:choose .  What is alternative?

    I have a list of input fields which can either be a numeric input field, or a 1 of N enumerated choice. The bean, (TestSequence), either contains the nested structure of TestSequence.items[].numeric, or TestSequence.items[].enumerated depending up th