Is there a way to clean the keys?

Hey guys, I accidentally spilt some OJ on my Powerbook, while it was closed, but somehow a couple of my keys must have got a little bit of the juice on them, and a couple of them are now sticking a little. They still work, but I can tell that they are not punching in as normal as the others. Is there a way to pop a key off to clean them underneath??
Thanks for your help in advance!

Welcome to the discussions, drewser.
Popping a key off a PowerBook keyboard is a scary affair. The plastic tabs that hold them is place are very delicate, and the keys themselves bend slightly because they are so thin. Do it with great caution!
Here's how the keyboard removal guide at PB FixIt describe the process:
This is scary - take a deep breath before continuing. Place your index finger under the upper left corner of the key and lift up until you hear a click. Then, transfer your finger to the left edge of the key and lift up to pull the key off.
You're freeing the two tabs on the left of the key from the two small holes in the plastic scissors mechanism.
When replacing the keys in the keyboard, place the key directly over the slot where it will go and press down until you hear the key click into place.
I've only ever done it a couple of times myself. nothing broke, but it wasn't fun.

Similar Messages

  • __ Is there a way to adjust the key commands for switching channels in curves?

    __ Is there a way to adjust the key commands for switching channels in curves?
    By that I mean <command> + 1 for cyan, <command> + 2 for magenta etc. like Photoshop CS3 rather than <option> + 3 for cyan etc.
    There's gotta be a way under Edit --> Keyboard Shortcuts - but I can't find it!
    Thanks,
    Hugh

    Hi,
    You can find the CS4 plug-in here:
    http://blogs.adobe.com/jnack/files/Use_Old_Shortcuts.zip
    It's inline in tis post with some more background info:
    http://blogs.adobe.com/jnack/2010/05/use_legacy_shortcuts_option_in_cs5.html
    regards,
    steve

  • Is there a way to change the key photo on iPhoto Faces?

    Hi
    The picture on the corkboard for each person appears to be the first photo you identify for that person.
    Is there any way to change the key photo, like you can do with Events?
    Thanks
    Dave

    Thanks very much!
    I hadn't realised you can do that on Events, I have always right clicked on it and brought up the option to Change key Photo. That doesn't work the same way n Faces, so thanks for the Space Bar trick.
    All the best
    Dave

  • Is there a way to clean the javascript cache of files in layouts folder?

    Is there a way to clean the javascript cache of files in layouts folder?
    If I deploy a new version of the solution after some changes in javascript file which is deployed to the layouts folder the old version is used. The only fix I have found so far is to change the URL of the javascript file with some fake querystring like
    "?v=2". But this requires another deployment. So I am asking for an alternative approach.

    hi Nikolay,
    there is no clean solution for your problem. Browsers cache files by url, you can avoid caching appending in query string unique value per deployment. For example
    _layouts/my_js_file.js?v=<current date> - will be refreshed from cache when day changes
    _layouts/my_js_file.js?v=<GUID> - if guid is generated on every request, this file should never cache
    _layouts/my_js_file.js?v=<product version> - more preferable solution, browser will update cache on every new version that was deployed
    Actually, ScriptLink should take care about this, internally it has a method that appends unique id into query string based on js file content, if content changed, hash is also changed and new unique id is generated.
    Check Below link for more information
    http://sharepoint.stackexchange.com/questions/57874/how-to-avoid-caching-issue-when-using-custom-javascript-and-css-deployed-under
    You can also check this link
    http://www.sharepointnutsandbolts.com/2011/11/avoiding-bugs-from-cached-javascript.html
    Please mark the Answer and Vote if it will help to resolved your issue

  • Is there any way to clean the CD/DVD drive?

    Is there any way that you can clean the CD/DVD drive?

    You can try and clean then the CD/DVD read/write laser lenses by purchasing  a commercially available, retail Dry Brush CD/DVD lens cleaning system disc.

  • Is there any way to clean the mouse button?

    Everytime I click it seems real tough, like maybe something was spilled in it, although I didn't. Does it come off like the keys to clean?

    Hi, Barry. No, the trackpad button doesn't readily come off for cleaning. Other than using canned compressed air to blow all around the button's perimeter and try to dislodge any material that may be stuck under the button, I don't know of much you can do. If there is sticky glop under the button, your only repair option is to replace the top case, which includes the trackpad assembly.
    A workaround, of course, is to use a USB mouse with the Powerbook.

  • Is there a way to clean sticky keys on keyboard after liquid splash?

    Recently some wine splashed on my keyboard and now about 50% of the keys are sticky.  Is is possible to clean the keyboard or am I in the market for a replacement?
    Thanks for any help.

    A spill is sometimes hard to clean up. But this article is very complete in its scope > Clean your Apple products - Apple Support - ÇÇÇ

  • Is there a way to identify the key words being used for SEO when I'm visiting a web site?

    When I am on a web site, looking at a product for sale, is there an app or add on I can use to see what that site has for key words, meta tags etc? It would be helpful when adding products to my own site to see what works elsewhere.

    Do search engines even look at those anymore? URL, title and page content are what's relevant.
    * http://www.metatags.org/google_ignores_meta_tags_in_ranking
    In any case, you can look at the source code. Click the Firefox button, then Web Developer, then View Source. You can also press Ctrl+U.
    All 'SEO' add-ons:
    * https://addons.mozilla.org/firefox/search/?q=seo&sort=users

  • Is there any way to clean the earbud metal net?

    On my left earbud there exist dust. so that it can't sount well. please give solution

    Take a cotton swap soaked with a few drops of rubbing (isopropyl) alcohol, and use that to clean it.  Let the earbud dry completely before plugging it in and using it.

  • Is there a way to detect two keys at the same time?

    Is there a way to detect the keys if the user is holding two keys down at the same time?

    yes, but you'll have to check outside of the event loop (i.e. don't check for it in the keyPressed method).
    just use an array of keys that keeps track of which keys are currently down and which are up. you could use a boolean array but I use an int array because... Im not sure I've just done it probably because of my C background. anyway, basic setup:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class MultiKey extends JFrame {
         int keys[];
         public MultiKey() {
              super();
              keys = new int[256];
              Arrays.fill(keys,0); // 0 = key is up
              enableEvents(AWTEvent.KEY_EVENT_MASK);
              show();
         public void processKeyEvent(KeyEvent e) {
              // the 0xff below binds the key code to below 256
              int key = (e.getKeyCode()&0xff);
              if (e.getID() == KeyEvent.KEY_PRESSED) {
                   keys[key] = 1; // 1 = key is down
              else if (e.getID() == KeyEvent.KEY_RELEASED) {
                   keys[key] = 0; // 0 = key is up
         protected boolean isKeyDown(int key) {
              return (keys[key] != 0);
         protected boolean isKeyUp(int key) {
              return (keys[key] == 0);
    }so now at any time in your code you can check key state by using the isKeyUp and isKeyDown methods. this is about as close as you get to input polling in java unless you use LWJGL or something similiar ;)
    you can try out a full executable example at my site here - just open up the jar and start holding keys down :)

  • I cleaned my wireless keyboard with a cloth that had a few sprays of windex on it, wiping back and forth and up and down on the keys. Now, various keys are not working. Is there a way to "reset" the keyboard to restore the keys?

    I cleaned my wireless keyboard with a cloth that had a few sprays of windex on it, wiping back and forth and up and down on the keys. Now, various keys are not working. Is there a way to "reset" the keyboard to restore the keys?

    Thanks for replying (thorvsphoenix)
    The windex was sprayed on the cloth, not the keyboard. And only one or two pumps on a hand towel. No liquid seeped between the keys the towel was barely damp. You are saying the ammonia gas created the problem?
    I think It was more an issue of multiple keys being depressed at the same time that screwed up the configuration. That is why I need to "reboot" the keyboard.

  • , and jump pages. Is there a way to access the keyboard.. to clean?d

    Help! it has taken me 1/2 hour to write this. The keys on the right hand side of my computer, will cause the cursor to ,
    jump backwards, delete whole lines of text, and wreck havoc with anything I attempt to do. Jump pages, etc. Just moving the cursor via trackpad will open of close webpages, and send e-mails to those not intended.  Maybe, something is gumming up the keyboard. Is there a way to remove cover and clean?
    Or is it a heat up problem. I can't keep buying a new computer every five years. Have had Macs since 94'. But, wallet thinner, must go to PC if can't fix this one. I have 5 others upstairs that can't find anyone that can fix.

    Hello,
    It could be  stuck key. (or keys)
    You can try cleaning the keys, here is how you can do that.
    http://mij.oltrelinux.com/ibook/cleaning_keyboard/
    Pop the caps off and clean around them.
    If that doesn't work then you may require a new keyboard.
    Here is how to remove and replace an iBook keyboard.
    http://www.ifixit.com/Guide/Replacing+iBook+G4+12-Inch+800+MHz-1.2+GHz+Keyboard/ 155/1
    Should it require a new keyboard, they can be replaced very cheaply.
    Remember to get the right one for your iBook (i.e 14" or 12" models differ)

  • TS3048 Is there a way to "calibrate" the magic mouse? I have rearranged settings for mouse, air-cleaned, tried different surfaces, however, it seems to be misinterpreting finger movements and randomly trying to open launchpad when enabled.

    Is there a way to "calibrate" the magic mouse? Batteries are good. I have rearranged settings for mouse, air-cleaned, tried different surfaces, however, it seems to be misinterpreting finger movements and randomly trying to open launchpad when enabled-flashing between the app I am in and launchpad. When right-click is enabled I have to go to the extreme upper left of mousepad to click or it is interpreted as right-click. Won't consistently "scroll". Suggestions?

    Here's some things you could try....
    Reset your computer's PRAM
    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mh26871.html
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    Mac OS X: Starting up in Safe Mode
    http://support.apple.com/kb/HT1455

  • My computer keyboard has a bad "M" key so I cannot login into my computer from boot     is there a way to bypass the login to reset my macbook pro

    my computer keyboard has a bad "M" key so I cannot login into my computer from boot     is there a way to bypass the login to reset my macbook pro

    Late reply, but if anyone is experiencing the same problem, I've found a solution. For whatever reason, some macbooks don't recognize usb flash drives during the boot-up phase, even though the usb ports themselves are powered (I tested this with a multimeter). The solution then, was to use an external USB hard drive that has its own power supply to install Snow Leopard. I don't know why, but it's the only way I got my macbook (Macbook 2,1/A1181) to recognize the install drive. Every was smooth sailing from there!

  • Is there a way to operate the command key using the mouse?

    I am working with a student who has limited movement of his hands. He is able to operate a mouse. However, he cannot operate the mouse and make key commands at the same time. Is there any way to adapt the mouse so command key actions can be carried out without pressing the key?

    Look inside System Preference "Universal Access" (or whatever even more politically correct name it is called now).
    There is a feature called "Sticky keys". That says that when you press the command key in a certain way, it stays pressed (It is "Sticky").
    There are also two and three button mouse devices that can be used readily on a Mac (including the "Mighty Mouse" with the little rollerball) that can register one, two, or three button operations.

Maybe you are looking for

  • Adobe Reader 9.3 has stopped working ---- close the program

    When trying to open a PDF document, I get the Adobe Reader error box.  Adobe Reader 9.3 has stopped working.   A problem caused the program to stop working correctly. Please close the program. I went to the Adobe site and followed the instructions to

  • How can i make the size of my document that i created smaller so that i can email it easier

    The 5 page document I created and need to send is 1.7MB.  I need it to be 250KB to send using the format requested.  All the info needs to be sent.  How can i shrink the data by such a large amount to enable the document to send?  I am on Windows 7 a

  • Problem with Guessbook created in JSP

    I have a Guessbook project that i need to create a delete button in order to clear the message box, I have tryed everything and nothing works. I even use the same code from the submit button and it doesnot work. Please help me I only have one day lef

  • Reporting in SAP B1

    We are a small company (70 staff) in the process of buying/implementing SAP B1 I have the following questions: 1. what is the latest release? 2005? 2007? 2. Can anybody explain to me why is our consultant quoting us BOTH Crystal Reports ( one licence

  • All transfered songs not appearing

    I have moved songs from my itunes on my pc to my iphone 4s.  When I go to the iphone while it is plugged into the pc it shows the songs are there but when I go to my iphone they are not all there.  All the songs are from albums that I loaded into itu