Should I separate the back bezel from my display?

Hi,
Just got a used iBook G4 with a display showing three light spots. They are definitely caused by pressure from the back bezel or lid behind the display. My thinking is that there are some bumps or debris caught between the back bezel and the display screen. I want to separate the two and clean out the bezel. I've looked at some how-to sites and they seem to indicate that to remove the display assembly I need to practically totally dismantle my iBook. I don't need to replace anything, though, so my question to you is; should I try to take the screen away from the bezel without disconnecting them from the rest of the iBook?

Hey Mike,
Well if you take those 4 hex screws out the back comes off easily.
However you might want to take a look at this thread. This problem seems to be related to the PowerBook problem:
/discussions.apple.com/thread.jspa?threadID=474465
Also if you google:
"iBook screen light spots"
http://tinyurl.com/6oeevq
I've seen this problem and it seems to be from anomalies in the coating or possibly pressure.
Richard

Similar Messages

  • I have an Ipad first generation with IOS 5.1.1. and I have just got a new ipad mini. Should I use the back up of the old Ipad from Itunes copy to configure the new one, or it is better to configure the new one from scratch?

    I have an Ipad first generation with IOS 5.1.1. and I have just got a new ipad mini. Should I use the back up copy of the old Ipad from Itunes to configure the new one, or it is better to configure the new one from scratch?

    Contrary to the opinion above, I see no reason whatsoever why you can't set up the new iPad from the backup of the old one. Obviously you will have app updates to make and complete and that sort of thing, but if you want to retain all of your app data and device settings (some of which will change because of the updated iOS), I would certainly restore from the backup first.
    If you find that to be problematic, you can always start all over again.

  • HT201269 i don't know where to tell the iphone that it should look onto the icloud and get the back up from my old device.  This page says I will be prompted but I have not been.  Where should I look?

    i don't know where to tell the iphone that it should look onto the icloud and get the back up from my old device.  This page says I will be prompted but I have not been.  Where should I look?

    Settins > General > Reset and then Erase all content and settings. Then during setup assistant click restore from icloud backup

  • Programming the BACK button from a list

    Hi,
    I have a program that utilizes a selection-screen, a customized screen, and a list (leave to list-processing) respectively. What i want to know is how to enable the back buttom from the list to immediately go to the selection-screen instead of the customized screen (which comes before the list).
    at user-command doesn't seem to work... any advice is welcome. Thanks!

    hi winnie,
    this documentation may solve your problem..
    <b>To pass control from the dialog processor to the list processor, you must include the following statement in one of the dialog modules:</b>
    <b>LEAVE TO LIST-PROCESSING [AND RETURN TO SCREEN <nnnn>].</b>
    You can include this statement in either the PBO or the PAI event. Its effect is to start the list processor and display the basic list after the PAI processing of the current screen. The basic list contains any list output from all PBO and PAI modules that have been executed up to that point.
    If detail lists are defined in the corresponding event blocks of the ABAP program (AT LINE-SELECTION, AT USER-COMMAND), user actions on the basic list will lead to the detail list, and further interaction will lead to further list levels.
    You can leave list processing in two ways:
    By leaving the basic list using the Back, Exit, or Cancel function.
    By using the following statement during list processing:
    <b>LEAVE LIST-PROCESSING.</b>
    In both cases, control returns from the list processor to the dialog processor. Each time this occurs, the entire list system is initialized. Any subsequent list output statements in PBO and PAI modules apply to an empty basic list.
    By default, the dialog processor returns to the PBO processing of the screen from which the list processor was called. The optional addition AND RETURN TO SCREEN allows you to specify a different screen in the current screen sequence at whose PBO event you want to resume processing. In particular, the statement
    <b>LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.</b>
    can be used to end the current screen sequence and return to the point from which it had originally been called.
    <b>
    Recommended Procedure</b>
    If you want to display lists during screen processing, you should create a separate screen for each list system that you want to call. This screen encapsulates the creation and display of the basic list. It can then be called from anywhere in the program using CALL SCREEN.
    The actual screen mask of this screen can remain empty. You do not need any PAI modules, and only a single PBO module. In the PBO module, you define the basic list of the list system and call the list processor.
    First, use the
    <b>LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.</b>
    statement to call the list display at the end of the screen, and to ensure that, after leaving the list, you return to the point from which the screen was called.
    Next, set a GUI status for the list; for example, the default list status SPACE or a list status of your own.
    Use one of the following statements to ensure that the empty screen is not displayed:
    <b>SUPPRESS DIALOG.</b>
    or
    LEAVE SCREEN. Instead, the list is displayed immediately at the end of the screen.
    Now define the entire basic list, and place any necessary data in the HIDE area.
    If you want to process user actions on the list, you need to define the relevant event blocks in your ABAP program. If you want to call more than one independent list system in the program, you must ensure that you can tell them apart in the list event processing. You cannot do this using SY-DYNNR, since the container screen for a list is always number 120. Instead, you could assign a different GUI status to each list, and distinguish between the list systems using the value of SY-PFKEY, or you could place some unique information in the HIDE area of each list system.
    Example
    REPORT demo_leave_to_list_processing .
    TABLES sdyn_conn.
    DATA: wa_spfli TYPE spfli,
          flightdate TYPE sflight-fldate.
    CALL SCREEN 100.
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    ENDMODULE.
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE user_command_0100.
      CALL SCREEN 500.
      SET SCREEN 100.
    ENDMODULE.
    MODULE call_list_500 OUTPUT.
      LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0.
      SET PF-STATUS space.
      SUPPRESS DIALOG.
      SELECT  carrid connid cityfrom cityto
        FROM  spfli
        INTO  CORRESPONDING FIELDS OF wa_spfli
        WHERE carrid = sdyn_conn-carrid.
        WRITE: / wa_spfli-carrid, wa_spfli-connid,
                 wa_spfli-cityfrom, wa_spfli-cityto.
        HIDE: wa_spfli-carrid, wa_spfli-connid.
      ENDSELECT.
      CLEAR: wa_spfli-carrid.
    ENDMODULE.
    TOP-OF-PAGE.
      WRITE text-001 COLOR COL_HEADING.
      ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
      WRITE sy-lisel COLOR COL_HEADING.
      ULINE.
    AT LINE-SELECTION.
      CHECK not wa_spfli-carrid is initial.
      SELECT  fldate
        FROM  sflight
        INTO  flightdate
        WHERE carrid = wa_spfli-carrid AND
              connid = wa_spfli-connid.
         WRITE / flightdate.
      ENDSELECT.
      CLEAR: wa_spfli-carrid.
    This example switches to list processing during the screen processing for screen 100. Screen 100 has a single input field - the component CARRID from the ABAP Dictionary structure SDYN_CONN.
    Do contact me if you have any problem
    and do reward the points if you think this documentation is of your help to you.
    Thanks and regards,
    kunal.

  • Can someone please help me re-install my Creative Design 5.5 on my Mac?  My MacBook Pro recently crashed and had to have the hard drive replaced.  The back up from Time Machine is not reinstalling the program.  Since I have the download paid, and codes, I

    Can someone please help me re-install my Creative Design 5.5 on my Mac?  My MacBook Pro recently crashed and had to have the hard drive replaced.  The back up from Time Machine is not reinstalling the program.  Since I have the download paid, and codes, I need direction on how to reinstall -- HELP?

    Hi bodegakc,
    If you have the serial number then please use the below mentioned link to download the product you are looking for .
    CS5.5
    Also before installing Please go to Applications-->Utilities--> Adobe installers and if there is any uninstaller for CS5.5 , you can remove it and do a fresh install.
    You can also use creative cloud cleaner tool before installing.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Thanks
    Nikhil Gupta

  • HT201269 i would like to get my notes back or at least be able to see them, from itunes without restoring my brand new iphone 4s as i believe the back up from my previous iphone is corrupted. Help please

    i would like to get my notes back from itunes or at least be able to see them without restoring my brand new iphone 4s as i believe the back up from my previous iphone is corrupted. Help please

    If you can't restore from your backup you could try 3rd party software such as iPhone Backup Extractor to see if you could extract your notes from the backup.

  • How do I restore the back up from my old iPhone 5 which is IOS 8.1.3 to my new iPhone 6 which is IOS 8? It's not coming up as an available back up restore option?

    How do I restore the back up from my old iPhone 5 which is IOS 8.1.3 to my new iPhone 6 which is IOS 8? It's not coming up as an available back up restore option? Am I able to set up as a new iPhone and then update the new phone to IOS 8.1.3 and then restore from my old iPhone 5 back up at that stage?

    Setup your new phone, then update to iOS 8.1.3. Once done: Settings>General>Reset>Erase All Content & Settings". At the setup screen you'll now be able to select your old phone's backup.

  • How do I remove the back up from my c drive in my PC?

    How do I remove the back up from my c drive in my PC?

    This is where the backups are stored on the computer.
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\
    Go to the appropriate folder and remove it.

  • HT201269 Is it recommended to set up a new iPad using the back up from iPhone?

    Is it recommended to set up a new iPad using the back up from iPhone?

    Just copy the library over to the new drive?

  • Can i change the back Color from the IPhone 5c

    Can i Chang the back Color from the i-Phone 5c .Now i Heven Pink and i want Blue Shoud i go to a Apple störe to do that and how much does it cost!!!

    Apple does not do this at all.
    Not sure if anyone does this.  if they do, it will void the warranty

  • Sales order should not copy the net value from contract

    Hi,
    When we are creating the sales order,Where we can maintain that sales order should not copy the net value from contract.
    Regards
    Prabudh

    Hi,
    When I am creating the sales order with reference to contract,it's copying the net value and quantity from the contract.
    But I want  that sales order should not copy the net value and quantity from the contract and user can take new required quantity at the time creating the sales order.
    Regards
    Prabudh

  • I use iPhone 4S 8GB device. Want to move the back up from mobile device to computer. Can anyone help me on this?

    I use iPhone 4S 8GB device. Want to move the back up from mobile device to computer. Can anyone help me on this?

    It's not clear what you're asking. What mobile device are you talking about. iPhone back ups are ordinarily in one of two places: iCloud or a computer. The are not stored on the phone. If you're currently backing up your phone to iCloud and you want to back it up to your computer, you can do that using iTunes. You don't move a back up from iCloud to your computer.

  • I had backed up my data from my iphone 4 through icloud. i have purchased an iphone 5S. how do I restore the back-up from icloud?

    i had backed up my data from my iphone 4 through icloud. i have purchased an iphone 5S. how do I restore the back-up from icloud?

    How To Restore iPhone:  http://lmgtfy.com/?q=how+to+restore+iphone

  • TS3694 how do I delete the back-up from  my i-phone ?

    how do I delete the back-up from  my i-phone ?

    what about if i want to delete the backup from my itunes .
    i have too many diffrent types of iphone backup. i want to delete some of those from my itunes and from my macbook pro.what do i do?

  • My external Time Machine disk is almost full. I know TM is supposed to erase the oldest back-ups to makew room for newer ones but is it safe for me to just erase the back-ups from  2 or so years ago to make room for TM as well as anything I might want to

    My external Time Machine disk is almost full. I know TM is supposed to erase the oldest back-ups to make room for newer ones but is it safe for me to just erase the back-ups from 2 or so years ago to make room for TM as well as anything else I might want to add to this external drive?

    Time Machine makes room for backups as necessary in a complex and sophisticated fashion, and it's not something to mess with lightly. However there are instructions at the bottom of this link which tell you how you can. Those instructions are part of the ultimate resource for all things Time Machine, put together by an Apple Support Communities member who is greatly missed.

Maybe you are looking for

  • Is there any way to put deletion indicator on sales order

    Hi All We are using MTO assembly order concept in our environment. Every sales order item will automatically create a production order. And there were thousands of productions orders which does not have any deletion indicator on them. So when I am ru

  • Is there any way to add scrolling texts manually on Captivate 5?

    I tried to used the text box entry in standard objects as a scrolling text, however it failed when someone else on here replying to another forum saying it should work. The main purpose of this is for the people visiting this project, i need them to

  • Does noboby know!!! program changes in logic with kontakt3 instrument banks

    Hi all. im having real trouble understanding program changes from the events list in logic pro in conjunction with Kontakt 3. i have a region playing a bar of a violin legato then a bar of staccato then a bar of tremolo (just for example) using konta

  • Messed up videos- AGAIN!

    All I want to do this watch videos with sound. I downloaded the updates, unfortunately. When I came to this forum and one of the topics said restore your ipod and reinstall the original software. I did that. Nothing Changed. Every time I watch a vide

  • DNS Redundancy

    We have one domain controller whose ip is 192.168.1.2 where dns is also installed . Now i have configured another addtional domain controller whose ip is 192.168.1.3 where dns is also installed. Now the scenario is  I have got 2 dns primary is 192.16