Something really strange with iMac G5 screen

My friend has an iMac G5, and he has a strange problem. He was trying to find a shortcut for something in Quark, he was hitting the command key and something else (he can't remember what) and suddenly, his 20" iMac screen doesn't fit the contents of the screen anymore. It's like the dock on the bottom is off the screen, ditto for the menu bar at the top and side to side. When you move the mouse, it shifts the whole screen left, right, up or down. Again, it's as though the contents of the screen are bigger than the 20" screen itself. I've checked resolution, and it's set to native; we've rebooted the computer, but the problem persists. I have no idea what's going on; can anyone please help?
Thank you.

He might have turned on Zoom. If you look in System Preferences->Universal Access, you'll see the controls there. You can turn it on or off without having that Preference window open, though. Use ⌘-⎇-8 (Command-Option-8).

Similar Messages

  • Trying to do something very strange with layouts and painting components

    I'm trying to do something very strange with changing the layout of a container, then painting it to a bufferedImage and changing it back again so nothing has changed. However, I am unable to get the image i want of this container in a new layout. Consider it a preview function of the different layouts. Anyway. I've tried everything i know about swing and have come up empty. There is probably a better way to do what i am trying to do, i just don't know how.
    If someone could have a look perhaps and help me out i would be much appreciative.
    Here is a self contained small demo of my conundrum.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.border.LineBorder;
    // what is should do is when you click on the button "click me" it should place a image on the panel of the buttons in a
    // horizontal fashion. Instead it shows the size that the image should be, but there is no image.
    public class ChangeLayoutAndPaint
         private static JPanel panel;
         private static JLabel label;
         public static void main(String[] args)
              // the panel spread out vertically
              panel = new JPanel();
              panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
              // the buttons in the panel
              JButton b1, b2, b3;
              panel.add(b1 = new JButton("One"));
              panel.add(b2 = new JButton("Two"));
              panel.add(b3 = new JButton("Three"));
              b1.setEnabled(false);
              b2.setEnabled(false);
              b3.setEnabled(false);
              // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
              // with the actual size we want.
              JPanel thingy = new JPanel();
              label = new JLabel();
              label.setBorder(new LineBorder(Color.black));
              thingy.add(label);
              // the button to make things go
              JButton button = new JButton("click me");
              button.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e)
                        //change layout
                        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                        panel.doLayout();
                        //get image
                        BufferedImage image = new BufferedImage(panel.getPreferredSize().width, panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                        Graphics2D g = image.createGraphics();
                        panel.paintComponents(g);
                        g.dispose();
                        //set icon of jlabel
                        label.setIcon(new ImageIcon(image));
                        //change back
                        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                        panel.doLayout();
              // the frame
              JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.setSize(400,200);
              frame.setLocation(100,100);
              frame.getContentPane().add(panel, BorderLayout.NORTH);
              frame.getContentPane().add(thingy, BorderLayout.CENTER);
              frame.getContentPane().add(button, BorderLayout.SOUTH);
              frame.setVisible(true);
    }

    Looks like you didn't read the API for Container#doLayout().
    Causes this container to lay out its components. Most programs should not call this method directly, but should invoke the validate method instead.
    There's also a concurrency issue here in that the panel's components may be painted to the image before revalidation completes. And your GUI, like any Swing GUI, should be constructed and shown on the EDT.
    Try this for size -- it could be better, but I've made the minimum possible changes in your code:import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.BoxLayout;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.border.LineBorder;
    public class ChangeLayoutAndPaint {
      private static JPanel panel;
      private static JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            // the panel spread out vertically
            panel = new JPanel();
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            // the buttons in the panel
            JButton b1, b2, b3;
            panel.add(b1 = new JButton("One"));
            panel.add(b2 = new JButton("Two"));
            panel.add(b3 = new JButton("Three"));
            b1.setEnabled(false);
            b2.setEnabled(false);
            b3.setEnabled(false);
            // the label with a border around it to show size in a temp panel with flowlayout to not stuff around
            // with the actual size we want.
            JPanel thingy = new JPanel();
            label = new JLabel();
            // label.setBorder(new LineBorder(Color.black));
            thingy.add(label);
            // the button to make things go
            JButton button = new JButton("click me");
            button.addActionListener(new ActionListener() {
              @Override
              public void actionPerformed(ActionEvent e) {
                //change layout
                panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
                //panel.doLayout();
                panel.revalidate();
                SwingUtilities.invokeLater(new Runnable() {
                  @Override
                  public void run() {
                    //get image
                    BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                        panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
                    Graphics2D g = image.createGraphics();
                    panel.paintComponents(g);
                    g.dispose();
                    //set icon of jlabel
                    label.setIcon(new ImageIcon(image));
                    //change back
                    panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
                    //panel.doLayout();
                    panel.revalidate();
            // the frame
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(400, 200);
            frame.setLocation(100, 100);
            frame.getContentPane().add(panel, BorderLayout.NORTH);
            frame.getContentPane().add(thingy, BorderLayout.CENTER);
            frame.getContentPane().add(button, BorderLayout.SOUTH);
            frame.setVisible(true);
    }db
    edit I prefer this:import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    public class LayoutAndPaint {
      JPanel panel;
      JLabel label;
      public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            new LayoutAndPaint().makeUI();
      public void makeUI() {
        JButton one = new JButton("One");
        JButton two = new JButton("Two");
        JButton three = new JButton("Three");
        one.setEnabled(false);
        two.setEnabled(false);
        three.setEnabled(false);
        panel = new JPanel();
        panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
        panel.add(one);
        panel.add(two);
        panel.add(three);
        label = new JLabel();
        JButton button = new JButton("Click");
        button.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            layoutAndPaint();
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 400);
        frame.add(panel, BorderLayout.NORTH);
        frame.add(label, BorderLayout.CENTER);
        frame.add(button, BorderLayout.SOUTH);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      private void layoutAndPaint() {
        panel.setLayout(new BoxLayout(panel, BoxLayout.X_AXIS));
        panel.revalidate();
        SwingUtilities.invokeLater(new Runnable() {
          @Override
          public void run() {
            BufferedImage image = new BufferedImage(panel.getPreferredSize().width,
                panel.getPreferredSize().height, BufferedImage.TYPE_INT_ARGB);
            Graphics g = image.createGraphics();
            panel.paintComponents(g);
            g.dispose();
            label.setIcon(new ImageIcon(image));
            panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
            panel.revalidate();
    }db
    Edited by: DarrylBurke

  • Spotlight and dashboard in Panther or something really strange??

    Well my school uses Apple Computers (iBooks,iBook G4's,PowerBook G4's,iMacs,eMacs,Airport Extreme, and iPods plus Ive seen some PowerMac G4's here and there) which makes me really happy since I love Apple and Mac!! But I noticed something really weird My school does NOT upgrade to the latest version of Mac OS (they still had OS 9.2.2 in late 2004 on ALL the computers) and I see the Dashboard and the little spotlight icon right next to the clock. Are these avalible in OS X Panther?
    Thanks

    If you see Dashboard and the Spotlight icon on a Mac, it is running Tiger.
    Spotlight is a Tiger search feature and Spotlight and Dashboard are only available for and can be used with Tiger.

  • Something strange with my iPod screen

    When I first noticed that there was something like an "M" in the upper right corner of my screen i tough it was just some dirt on my screen but it isn't.
    it's about as big al a capital letter on iPod , my iPod still works perfect but i tried everyting to get it away , even resetted iPod.
    since i think it's rather not possible that so many pixels died right next to eachother at the same time i would like to know what i can do about it.
    it's pretty annoying because i only got it for like a month now
    Grtz

    There are lots of free image hosts out there, such as ImageShack... you could just Google it and then post a link to the picture after you upload it.
    Message was edited by: Jacob Spindel (Wookie)

  • Trouble with iMac G5 screen resolution

    My wife has an iMac G5, running Snow Leopard; ATI Radeon HD 4670 video.
    She was downloading pictures from her Nikon D60 and looked at one of the pictures, when suddenly the screen resolution changed.
    I restored the default .icc profile from Time Machine from about a month ago (although it appeared to already be using the factory default).
    Screen resolution won't work under any of the options shown under System Preferences / Displays. Any option leaves the screen too large (requiring scrolling to see the menus and the dock at the bottom) or else has strange characters / colors / boxes on part of the screen.
    After restoring the .icc profile, I rebooted in Safe Mode (held down shift key while booting) and the display looks fine in 2560 x 1440.
    When I reboot and don't go into Safe Mode, the display isn't right even though it's still in 2560 x 1440.
    Since it works in safe mode, seems like it can't be hardware.
    Any ideas what to do or try?
    Thanks.
    Keith

    Sounds like maybe the Display is Zoomed in?
    Try holding the ⌃ (control) key and scrolling down or alternately use the ⌥ ⌘ - (alt command minus) key command and see if that doesn't return to normal view?
    The mouse scrolling feature can be disabled in the Mouse Preference and the key command feature can be disabled in the Universal Access Preference.
    Dennis

  • Something really worng with ipad, please help!

    so ive had my ipad since decmber and already theres something wrong with it. i was just scrolling through my apps when all of a sudden my ipad flashed onto a blue screen and then just stayed onto a dark blue/black screen. i tryed turning it off and when it did the apple logo appeared and then it just went dead. my ipad now wont turn on at all and i dont know what to do with it ? ive tryed the trick where you press the home and lock button but nothing happened. someone please please please help as ive only had this ipad for a few months and woud hate to get rid of it

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    iOS: Device unexpectedly restarts, displays Apple logo, or powers off
    http://support.apple.com/kb/TS5356
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
    You iPad is still under warranty. Take it to an Apple Store for evaluation.
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
     Cheers, Tom

  • Serious issues with iMac, black screen during erase and install-PLEASE HELP

    My sister's Intel iMac G5 seriously has been a lemon, it has had SO many issues. It's now 2 years old, and has been rather slow for the maybe the last year, but over the last month or so it has gone way downhill, and it literally takes an hour to boot up, and 4-5 minutes to do anything (open an application, look at a photo in iPhoto, etc.). So, we've been trying to "erase and install" with her install discs to hopefully give the computer a clean boot and see if it helps at all. She has already backed everything up.
    She started the erase and install last night, and it was going ridiculously slow. This morning when she woke up, the blue progress bar had gone about half way across. Then she went to get her kids ready, and when she came back in it looked like the computer was rebooting itself (gray screen with apple), but then the screen turned black and she can't do anything on it. Has anyone seen anything similar to this before?
    We have had so much trouble getting this to work (we tried an archive and install a few days ago, but it gave her an error at the end). For about a day we couldn't even get the computer to boot up at all, but then miraculously yesterday morning it booted! Please help, I've converted her to Macs but if I can't get hers fixed she may never get one again!!

    I'm afraid that it's a contradiction in terms to talk about an intel iMac G5. What your sister has is an intel machine, and she will find good advice by posting to the [intel iMac Forum|http://discussions.apple.com/forum.jspa?forumID=1110].

  • Theres something really wrong with Clean Up Diagram

    There appears to be some significant problems with the Clean Up Diagram algorithm. It seems that far too much space is padded next to cluster unbundle by name and structure objects. It is really frustrating that some things appear miles apart and others are far too close. I have done a very good job of factoring this application into VIs but the inconsistency around certain objects makes it look terrible.
    Help! I can't read it!
    PS: Prior to now I have been careful not to perform a Clean Up Diagram on the vi containing a case with a large number of sub cases.

    DEppAtNGC wrote:
    As for the feature being "new", it's NOT new.
    Diagram Cleanup was introduced with LabVIEW 8.6 last August. Since this is the latest major version it is a new feature by any reasonable definition.
    I agree that it is not great to be used on excellent code. So far it seems to bring the diagram quality somewhere in the neighborhood of the 70 percentile on my scale (wild guess!). It does a great job on horrible diagrams (it lifts them from very low score), but makes any of my own diagrams worse (they go from the 99 percentile down to 70). Don't expect miracles. I never use it on my own code, but it helped me to make some sense out of nightmare code posted here in the forum..
    DEppAtNGC wrote:
    GET THIS FIXED!!!
    Well, NI is always eager for product feedback, so if you have detailed and constructive ideas about how to improve the cleanup tool, please let them know via the product suggestion center. If possible, include some typical diagrams and describe what's wrong with the current outcome and how you want the results to look like instead. Good luck!
    LabVIEW Champion . Do more with less code and in less time .

  • Something very wrong with my computer screen, please help!

    Hello all,
    Hopefully someone can help me!! I just got this Mac about 3 months ago, it is my first Mac. It is a MacBook Pro 15". Anyway, last night when I opened it up the screen has gone all funny & seems to be getting worse. It is kind of like on the TV when you get bad reception.
    Does anyone know why it has done this? I took it with me in the car, but I don't think it got bumped around or anything like that.
    i have attached some photos
    thank you everyone for your help in advance!!
    http://www.flickr.com/photos/55180164@N05/5122340102/
    http://www.flickr.com/photos/55180164@N05/5122335136/

    I think mine has got the same problem, I’m not 100% because I can’t see your problem properly because my screen is dodgy too :-p
    http://www.thefootdown.co.uk/images/temp/screen-full.jpg
    http://www.thefootdown.co.uk/images/temp/screen-cu.jpg
    MIne is well out of warranty though, is it possible for me to fix this myself?
    Thanks
    Ty

  • Something really wrong with my Mac

    The main problem is that when I turn it on it shows the apple logo and the little loading wheel under it but after letting it run for about four hours it hadn't started. To try and fix the problem I put in the Mac OS X disc and erased the operating system and re-installed it. Once I did that it ran fine again for about a week then the Mac froze and I turned it off and was stuck with the original problem again. I've repeated this process several times and keep getting the same problem. Is there any way I can get my Mac to run correctly again?

    There could be several things awry, first off, did you repair permissions after reinstalling? You can use Disk Utility to check your system:
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk.
    After you have repaired the disk, use Disk Utility on your hard drive to repair permissions.
    You might also want to Rum Apple Hardware Test from an install disc, boot it holding down the D key, to make sure that there is nothing wrong there.
    If you don't have the iSight, open the back of the machine and check your [LEDs|http://support.apple.com/kb/HT2831].
    Do let us know how you make out,

  • There's something really wrong with linked files

    I have two days trying to solve this problem, but i can't.
    The demo movie has 6 linked images, 1 flash not linked and 1 flash
    linked. If i plublish this with director 10.1.1, everything is ok.
    But when i publish this in director 11, the linked files don't
    show. If i play the movie inside the dswmedia folder, works fine,
    but when i try it on a browser, don't work. Anybody can tell me
    what's wrong?
    sayeg

    Hi Sayeg,
    The Publish Settings have been enhanced in Director 11 for
    the Linked files publishing.
    If there are Linked files/casts in your movie then the
    "dswmedia" and "Linked files" folder are created automatically and
    the .dcr files will have internal links to these paths, relative to
    the main folder. This folder hierarchy should be maintained, else
    it will not work.
    -Sujai

  • Use... I realized that i spent my 27 years for using (fixing) computers. Because the Mac was perfect. After iMac, i was really fine with my computer... But after something, that doesn't bother me, happened. The screen started to get cloudy and black... An

    Hi...
    My name is Turgay and have been using computer since 1982... 2 years ago, because of my friend's advice, i bought an iMac... It was the first Mac that i use... Till that, i was using normal PC's...
    I bought an 24" iMac on July 2009 and started to use... I realized that i spent my 27 years for using (fixing) computers. Because the Mac was perfect. After iMac, i was really fine with my computer... But after something, that doesn't bother me, happened. The screen started to get cloudy and black... And it increased. Because of this i took my iMac to your authorised distributor http://www.bilkom.com.tr...
    They changed my screen but in 2 months it happened 3 times and i wanted them to change my iMac with new one, under customer laws... In our country, the device must be changed with new one if the same problem occurs in 3 months. Because i know the customer satisfaction of Apple, i didn' worry about it but Bilkom refused my will... I spoke with them for 2 months but nothing happened, they just told me, it' not our problem.
    Because of this speech, i sued them on June 2011... Last week, i won the case but just for the return of invoince... It costs 3.200 Turkish Liras (1.800$) and there's no 24" iMac unused... Bilkom again refused to give me an iMac... I thought that Apple's customer satisfaction can't be like this... I didn't write anything to Apple till now but if i can't get an iMac, i must return to normal PC after 2 years... And i don't want that... I offered an iMac 27" with core i7... No matter Bilkom accepts or not, they don't care of me... I'm a customer, they should do... I've never seen such a like company. I hope the real Apple will help my problem and save me from Bilkom...
    Waiting for your reply... Thanks and regards...
    Turgay Kala
    General Manager

    Unfortunately, you are not communicating with Apple here - we are all other users volunteering our time to help with technical problems.
    Here is a list of Apple contacts; there is no email address  - you will need to write a letter to their corporate headquarters or call them:
    http://www.apple.com/contact/
    Although, it appears that your problem is with a third party store and that you have won in court - did you get your money back? 24" iMacs have not been made since 2009 or 2010. Now there are 21" and 27" iMacs.

  • I just jazzed up my 2 Ghz iMac with 10.6.8, and 4 gigs of memory. I'm VERY happy with the results (fast!), but now I have a thin yellow line way over on the right side of the screen, which goes from top to bottom. This is really strange! Any input?

    I'm VERY happy with the results (fast!). However, the really strange thing is this - there is now a thin yellow line, way over on the right side of the screen, which goes from top to bottom, and stays there no matter where I go or what I do. I've never seen anything like this! It was not there before I did the upgrades. Anyone out there ever heard of such a preposterous thing ~ or have any ideas on how to get rid of it?

    Hello Mark,
    It's going to mean a lot of reading but you should study the 'More like this' legend to your post's immediate right.  >>>>>>>>   plus some of the links within each.
    The problem is well explored with much guidance on what to do and where to go.

  • How do I use an external Monitor to access files on my iMac with a broken screen?

    I have an 20 inch desktop iMac with a broken screen. It is the files on the computer that I wish to recover, after that, I can be on my merry way. Unfortunately, VileVault was on (Not my choice), and for some reason, when I target the disc image of the broken mac with a new one, ONE of the accounts "appears" to be completely empty. All of the accouts were running FileVault, but only one (mine) failed to be transferred because it is "empty". I refuse to believe that my files are actually all gone, because theoretically there should be nothing wrong with the CPU itself, just the screen.
    Thus my goal is to use a monitor on my broken screen iMac and simply log in and access my files normally, and perhaps pull them out with a USB or something. I have a DELL monitor, and a DVI (The big hairy plug with screws I think) converter that works with my old iMac, along with the male/male DVI cord. However, when I hook it up, nothing happens. I have tried booting the old CPU while holding F7, and option as I read on a forum, and neither produced results.
    Does anyone have any ideas on how to 1. Get the monitor to simply show what's going on on the mac? or 2. Pull out my files through some other means?
    Thank you.

    If you have a second Mac computer, you may want to try to copy over as many files you can. One way is to use target disk mode.
    http://support.apple.com/kb/HT1661
    http://lowendmac.com/misc/06/0710.html
    You need to follow this procedure to recovering a filevault id.  Mac OS X 10.3, 10.4: FileVault - How to verify or repair a home directory image ...  http://support.apple.com/kb/HT2631?viewlocale=en_US  
    Robert

  • I installed Mountain Lion and now some times when I start my mac it look with a black screen and white text. I'm really worry about it, can somebody help me?

    I installed Mountain Lion in my IMac and now, some times, when I start up my mac it looks with a black screen and white text. I'm really worry about it, can somebody help me?

    Don't worry, this is probably just Verbose Mode. It's perfectly harmless.  If you're not specifically invoking it, than it's probably down to an unwanted setting in NVRAM.  See this article on resetting NVRAM if it continues to bother you.

Maybe you are looking for