10.4.8 and color problems

I installed 10.4.8 and have the "blue" problem. I have isolated it to my account and can see when it happens during login, the background just changes to a funky color mapping as the login completes. I have disabled all my startup items, problem persists. How can I trace the startup of my account to identify what process is changing the color mapping. After my login completes I cannot get the display back to normal (display preferences/color does not change it)
Dual G5/Dual G4/MacBook Pro   Mac OS X (10.4.8)  

Ok, for the last hour I have been working this issue and found my problem. I hope this helps others.
Delete the com.apple.universalaccess.plist found in ~/library/preferences folder
Brute force method was used. I created a preference2 folder and moved all the com.apple.*. plist into it, booted with the now smaller preferences and all worked. Then I moved 10 at a time back and loged out/in waiting for the problem to come back, when it did, I took an educated guess on the culprit (based on its name), moved it back out did the login out thing and the problem went away. Now I am not a plist guru, but there is an item named contrast in the plist with a value of 0.450000 and I suspect that is the problem.
Dual G5/Dual G4/MacBook Pro   Mac OS X (10.4.8)  

Similar Messages

  • Chrome and Safari image alignment and color problems after upgrading to 10.8

    I have just upgraded from lion to mountain lion with a clean install. My website davidandora.com now displays image sliced improperly aligned in chrome and with slightly adjusted colors on some slices in Safari. They appear fine in the same version browsers on Macbook also running the most current mac OS. I suspect this is not a browser problem since there are issues with both browsers, but what could be causing this? I have run all updates on my computer and browsers.
    Checkout this address for a clear example in both browsers:
    http://www.davidandora.com/andoracam/
    and this image for what I am seeing:
    https://www.evernote.com/shard/s16/sh/eb7ce0f4-4735-418d-8793-f867d7e4d642/b7caf 9b1a7e6671b0fd714ac3e98de08

    I will add that the current Firefox is displaying everything correctly. So strange.

  • IMac 24' (nvidia) - Screen res. and color problems

    Hi all,
    I just turned to Apple and OS X last week (former Windows and Linux user), and I bought myself a brand new 24' iMac (actually the most powerful configuration available).
    But unfortunately my iMac does not work as expected. The screen resolution, even when turned to its maximum, is really poor. I cannot read characters and my eyes hurt after a few minutes. The color, even thought configured to Millions are more like 256 then 16 Millions...
    By the way, the refresh rate button is not available
    Any idea ? Should I return it to the Apple store ? Or, is there something I can do (such as installing drivers - as for Linux or Windows, or change something in the settings) ?
    I am a brand new OS X user, so... thanks for your help and understanding.
    Plastik1994

    Hello Plastik1994
    Welcome to Apple Discussions
    This simply fix should help your viewing pleasure.
    Open the Display Preference:
    1. Select the Display tab and make sure that the Resolution: is set to *1920 by 1200*
    2. Select the Color tab and uncheck the box *"Show profiles for this display only"* and select one of the RGB or sRGB profiles.
    To be honest I'm not sure why the iMac Calibrated profile looks so bad or why Apple tries to hides those other profiles from us. You can try setting Display Profile's experiment by eye, but to get it perfect you will need to calibrate using professional calibration tools.
    Dennis

  • Optimizing images and color problems in Catalyst

    I really need your guy's help.
    First of all, I am trying to figure out the best way to optimize images. I have a bunch of logos that are pdfs/ai files that I want to make thumbnails and full size images for a part of my portfolio site. No matter what I do the logos get choppy. Whether creating jpegs in illustrator, rasterizing the images, etc. Any ideas?
    Also, every time I bring an AI file into catalyst blacks/grays seem to be different. Anywhere I use any kind of low opacity or something things are screwed up. Faded whites in illustrator are bright white in catalysy. Low opacity whites (grays) are brown. WAY off. Any ideas there?
    This is driving me crazy and I have a deadline for this coming up very soon. I feel like I have gotten nowhere after hours and hours of this
    Thanks!

    Hi there,
    Here's a collection of material that should help:
    FAQ: How do I optimize Illustrator graphics for best performance in Flash Catalyst?
    Here are a few specific snippets from that collection that apply to your specific situation:
    -To reduce color differences when comparing colors in Catalyst and Illustrator/Photoshop, set Proof Colors to "Monitor RGB" (In Illustrator, go to View> Proof Setup and choose Monitor RGB). (From Ian Giblin's slide deck, pg. 19)
    -When creating documents in Illustrator that will be imported into Catalyst, set the document color space to RGB. There is a new document profile for Flash Catalyst built into Illustrator (select it from the New Document menu in Illustrator's new document dialog box). This does other helpful things like turning on "Align to Pixel Grid, and setting your document size to the commonly-used 800 x 600 pixels.)
    -Regarding the choppy logos, try using the "Optimize vector graphics" command in Catalyst (select your logo on the artboard, and in the Heads-Up-Display, choose Optimize artwork and then Optimize vector graphics. This feature is made for optimizing vector art for good performance, while still maintaining the ability to edit the vectors later if needed. You can also convert the logos to raster images right inside of Catalyst, by choosing "Rasterize" instead of Optimize vector graphics. More details are in this great FlashCats blog post.

  • Problem with adjusting both transparency and color of an object

    I am writing a program where when an object is picked, both it's transparency and color will be altered (the object will become opaque, and its color will turn to a predefined "selected" color), while the previously selected object will return to its original transparency and color. I am able to get this to work, except that objects that were picked two or more picks ago will remain in the selected color, albeit in their original transparency. This problem only seems to occur when transparency is factored in. The picking/color & transparency altering code is as follows.
    public class PickingListener extends MouseAdapter {
         private PickCanvas pickCanvas;
         private TextDisplay overlay;
         private Primitive p;
         private Primitive lastP;
         private ColoringAttributes origColor;
         private TransparencyAttributes origTransparency;
         public PickingListener(PickCanvas pickCanvasArg, TextDisplay overlayArg) {
              pickCanvas = pickCanvasArg;
              overlay = overlayArg;
         public void mouseClicked(MouseEvent e) {
              pickCanvas.setShapeLocation(e);
              PickResult result = pickCanvas.pickClosest();
              if (result == null) {
                   System.out.println("Nothing picked");
              } else {
                   p = (Primitive) result.getNode(PickResult.PRIMITIVE);
                   if (p != null) {
                        setSelectedColor();
                        overlay.setPickedBarInfo((BarInformation) p.getUserData());
                   else
                        System.out.println("null");
         private void setSelectedColor() {
              ColoringAttributes barCA = new ColoringAttributes();
              TransparencyAttributes barTransp = new TransparencyAttributes(TransparencyAttributes.NICEST, 0.0f);
              barCA.setColor(ColorConstants.SELECTED);
              if (lastP != null) {
                   lastP.getAppearance().setColoringAttributes(origColor);
                   lastP.getAppearance().setTransparencyAttributes(origTransparency);
              origColor = p.getAppearance().getColoringAttributes();
              origTransparency = p.getAppearance().getTransparencyAttributes();
              p.getAppearance().setColoringAttributes(barCA);
              p.getAppearance().setTransparencyAttributes(barTransp);
              lastP = p;
    }Capabilities to alter the primitive's color and transparency are all set.
         barAppearance.setCapability(Appearance.ALLOW_COLORING_ATTRIBUTES_READ);
              barAppearance.setCapability(Appearance.ALLOW_COLORING_ATTRIBUTES_WRITE);
              barAppearance.setCapability(Appearance.ALLOW_TRANSPARENCY_ATTRIBUTES_WRITE);          barAppearance.setCapability(Appearance.ALLOW_TRANSPARENCY_ATTRIBUTES_READ);
    ColoringAttributes barCA = new ColoringAttributes();
    barCA.setCapability(ColoringAttributes.ALLOW_COLOR_WRITE);
    barCA.setCapability(ColoringAttributes.ALLOW_COLOR_READ);)
    Any insight as to why this would occur would be greatly appreciated.
    -Adrian Benton

    A Behavior is the preferred way to make changes in a scenegraph. Here is an example from a previous post that changes the appearance of a shape when it collides with another shape.
    The javadoc for javax.media.j3d.Behavior appears to refer to the issue you have.
    Transparencies are confusing, different display adapters deal with them differently. Suggest you search the forum at
    http://forums.java.net/jive/forum.jspa?forumID=70
    for more detailed information.
    regards
    class CollisionDetector extends Behavior {
      private static final Color3f highlightColor = new Color3f(0.0f, 1.0f, 0.0f);
      private static final ColoringAttributes highlight = new ColoringAttributes(
          highlightColor, ColoringAttributes.SHADE_GOURAUD);
      private boolean inCollision = false;
      private Shape3D shape;
      private ColoringAttributes shapeColoring;
      private Appearance shapeAppearance;
      private WakeupOnCollisionEntry wEnter;
      private WakeupOnCollisionExit wExit;
      public CollisionDetector(Shape3D s) {
        shape = s;
        shapeAppearance = shape.getAppearance();
        shapeColoring = shapeAppearance.getColoringAttributes();
        inCollision = false;
      public void initialize() {
        wEnter = new WakeupOnCollisionEntry(shape);
        wExit = new WakeupOnCollisionExit(shape);
        wakeupOn(wEnter);
      public void processStimulus(Enumeration criteria) {
        inCollision = !inCollision;
        if (inCollision) {
          shapeAppearance.setColoringAttributes(highlight);
          wakeupOn(wExit);
        } else {
          shapeAppearance.setColoringAttributes(shapeColoring);
          wakeupOn(wEnter);
    }

  • How to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    how to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    Because it was not possible to apply a gradient to a stroke in CS5. When you open the file in CS5, it is reduced to something that can be rendered in CS5.

  • Since installing Yosemite on my Air, I can no longer select a message in my inbox and manually highlight it in color by clicking on a color. Is this a known and fixable problem?

    Since installing Yosemite on my Air, I can no longer select a message in my inbox and manually highlight it in color. Is this a known and fixable problem?

    I no longer recall how it was accomplished in Lion, but the only way I know of to assign a color to a Mail message is to apply a Rule to it.

  • PhotoSmart 8450 aligning the cartridges and color matchingr problems

    I have problems with aligning the cartridges and color matching on my PhotoSmart 8450 printer.
    Aligning the cartridges
    I just replaced a cartridge on my PhotoSmart 8450 printer. I always use the original Vivera cartridges.
    After replacing the 343 tricolor cartridge, the 100 gray cartridge suddenly gave smudge results.
    I did a lot of Clean cartridges and Align cartridges before getting acceptable results.
    The clean cartridges printout still gives small imperfections in the top grids.
    Color matching
    Most of the time I print on plain paper. Ocasionally I try to print photographs.
    In fact my PhotoSmart 8450 never really printed photographs in the right colors.
    Always too much blue and too little red... To solve this I decided to use ColorMunki Photo.
    But on the Colormunki test print some of the colors are smudgy.
    The settings are Paper type (HP Premium Plus Glossy), Quality (Best: 600dpi, PhotoREt), Real Life Photography (everything off), Color Management (I tried ColorSmart/sRGB or Managed by Application).
    The result is stripes and or smudgy appearance in some of the colors.
    Doing the same on plain paper (Standard or Best;  ColorSmart/sRGB) gives good results.
    What can I do to solve both problems?
    Thanks for helping.

    Hi,
    It looks as if you have done a lot of troubleshooting already, however it maybe that the cartridge is displaying minor color mix which should be apparent if you try to follow procedure in this support link, the stripes or small imperfections you have mentioned may be linked to partially missing color or colors which could also contribute to the appearance of photographs printing in the right colors.
    Hopefully this will give some assistance in resolving the issue.
    Thanks
    Neil
    Although I am an HP employee, I am speaking for myself and not for HP

  • I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. Pls help

    I udate my os to 10.6.7 and since then my Pages have color problems. The text is not visible (white on white background) it does'nt help to change the text color nor background color. I just download the recent trail version of Iworks and install it. The first document I opened it was ok. When I open the second one the problem appear again and stayed. Pls help

    This behavior was described many times.
    In every occurrence,the operating system was an uncompleted one resulting of the use of Software Update to update the operating system to 10.6.2, 10.6.3, 10.6.4, 10.6.5, 10.6.6, 10.6.7.
    In such cases, the solace was to apply a combo updater.
    As you are using 10.6.7, download and apply the combo 10.6.7 :
    http://support.apple.com/kb/DL1361
    After that, run Software Update which will urge you to apply :
    Snow Leopard Font Update
    Yvan KOENIG (VALLAURIS, France) dimanche 29 mai 2011 21:15:58
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • My computer, running on Lion, randomly flashes with crazy lights and colors. Doesn't happen often, but when it does it's totally random. What causes this problem and how can I solve it?

    My MacBook Pro, running on Lion, randomly flashes with crazy lights and colors. Doesn't happen often, but when it does it's totally random. It looks like the Northern LIghts!!!
    What causes this problem and how can I solve it?

    Really? Oh I get it. You're the kind of person who goes on tech message boards to make jokes - or friends.
    Well, I'm trying to solve this problem - which is a rather annoying way to spend a Saturday.
    SO either help or don't reply.

  • My G5 iMac has a screen color problem. The color is green with lines. What can I do to repar this? Sometimes the screen will freeze and I have to reboot the computer and the screen will be normal for up to 5-6 hours and then suddenly changes back to green

    My G5 iMac has a screen color problem. The color is green with lines. What can I do to repar this? Sometimes the screen will freeze and I have to reboot the computer and the screen will be normal for up to 5-6 hours and then suddenly changes back to a greenish color.

    Try running in Safe mode.  This leaves out some video drivers.  Which results in machine not using advanced video hardware.
    for more details see:
    Look through this thread. see the second page.
    https://discussions.apple.com/message/16057567#16057567
    Robert

  • 30" Apple Display - consistent color problems- 1/2 and 1/2

    I'm a professional photographer that must provide technically precise and color-correct images to my clients. My old 23" Apple Display was awesome. This new 30" is good looking, but I've noticed that the left side of the screen is slightly warm and the right side is slightly cool. I'm still using the Color Eyes calibration software, which makes my screen look better overall, but it's still clearly different tones left to right.
    Is there a fix for this?
    For now I'm calibrating one side and only using that half for my color-correcting needs. Seems like a lot of money to pay for a bad monitor. Thanks in advance for any advice.

    So, I took my faulty 30" back to my local Apple store, and because of a glitch in their repair scheduling software, they were forced to give me a brand new 30". NOW I have these little green flashing pixels that appear around edges of boxes. All over the screen, depending on where an edge is. ***?
    I'll take this thing back on Monday, but I'm hoping someone will have an easy fix for me.
    It can't be my computer since my original 30" display worked just fine an hour before hooking this new one up, right?
    Also, worth noting: I attempted to perform the "advanced Apple calibration" in display preferences (but it wouldn't save it for some reason.) I've seen the green pixels ever since. It doesn't seem to matter which preset profile I choose- I still see these green pixels.

  • I am making code to try to make a game and my problem is that my code......

    I am making code to try to make a game and my problem is that my code
    will not let it change the hit everytime so im getting the first guy to hit 1 then next hits 8 and so on and always repeats.
    Another problem is that I would like it to attack with out me telling it how much times to attack. I am using Object oriented programming.
    Here is the code for my objects:
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class rockCrab {
         //Wounding formula
         double sL = 70;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 50;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         rockCrab() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              double done = rint(fH - fA);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("Rockcrab hit" +done);
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class self {
         //Wounding formula
         double sL = 1;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 1;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         self() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("You hit" +done);
    }Here is the main code that writes what the objects do:
    class fight {
         public static void main(String[] args) {
              self instance1 = new self();
              rockCrab instance2 = new rockCrab();
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
    }when the code is run it says something like this:
    you hit 1
    RockCrabs health is 9
    RockCrab hit 7
    your health is 38
    you hit 1
    RockCrabs health is 8
    RockCrab hit 7
    your health is 31
    you hit 1
    RockCrabs health is 7
    RockCrab hit 7
    your health is 24
    you hit 1
    RockCrabs health is 6
    RockCrab hit 7
    your health is 17
    my point is whatever some one hits it always repeats that
    my expected output would have to be something like
    you hit 1
    RockCrabs health is 9
    RockCrab hit 9
    your health is 37
    you hit 3
    RockCrabs health is 6
    RockCrab hit 4
    your health is 33
    you hit 2
    RockCrabs health is 4
    RockCrab hit 7
    your health is 26
    you hit 3
    RockCrabs health is 1
    RockCrab hit 6
    your health is 20
    Edited by: rade134 on Jun 4, 2009 10:58 AM

    [_Crosspost_|http://forums.sun.com/thread.jspa?threadID=5390217] I'm locking.

  • Display color problem - asking for a color solution

    So I have this serious problem with my Macbook Pro.
    Some months ago I suddenly saw green colors in black area's and pink line colors in white areas.
    Text on white background was extremely frustrating to read, since it was surrounded with small pink lines and flickering.
    Note this was only near max white and max black areas of the screen.
    I found out that it was due to a hardware failure, since slightly bending the laptop (!!) would remove the problem
    Attaching an external monitor doesn't show the defect, and booting in Windows 7 (bootcamp) still shows the same screen problem.
    Searching the web, it appears that it was a NVidia related heat problem, known to my model, but the offer to get it fixed for free by apple (since it was a known issue) had already run out december 2012 (!!). I think my laptop is about 3-4 years old, and the battery pretty much died on me the first year, probably due to heavy usage and the graphic card getting too hot. There are small sweat/corosion marks of where my hand are placed when typing, on the aluminium, due to how hot my laptop got. It sometimes got so hot I couldn't touch the aluminium on the top left corner near the 1-2-Q-W keys.
    Fixing my Macbook is too expensive. Just getting someone to look at it to diagnose it (without repairing it), costs a lot in my country, and we have no official apple store, only authorized resellers. I know it's probably the motherboard, because I tried to unscrew the backlid and gently touch certain area's on the motherboard with a pen, while the computer was still running, to find out where the short circuit was. I only started this kind of trying to "self service" it, because I knew how expensive replacing the motherboard would be (if that was even the issue?).
    I have multiple times tried to place something up against the sensitive area's on the motherboard, and then screw back the backlid, to put some pressure on it, which at first worked brilliantly and removed the color issue for some weeks, before it started reappearing. I think the heat from the laptop slowly makes the motherboard adapt, and the problem returns. Extremely frustrating indeed.
    I hope I can one day afford a Macbook Air, but until then, I don't want to throw more money after my poor macbook (which I pronbably can't sell anyway, like previous mac's I've owned, the day get a new. It's too worn out + battery got only 5min on a full charge).
    I think it's wisest to rather save the money for a Macbook Air, and try to survive until then. Therefor I was hoping someone could help me with a temporary solution.
    In Windows 7, using the Nvidia Control Panel to apply color management, I was able to adjust the individual color output values, and thereby remove the the screen issue! Maybe the colors are not as good anymore, but it sure beats not getting a headache after 10minutes trying to read an article.
    I tried the same thing on the mac, using Preferences>Displays>Color>Calibrate, but this guide is much harder to use to get a decent result (since only the last 2 options really makes a difference, but changes the colors completely, which I can't change by going back to the first color settings since then it just undos the last step I just did. I'm currently writing this with a very blue pale screen.
    I also tried to use ColorSync Utility, expecting to enter values manually, but contrary to the articles I read about using ColorSync, I cannot edit the values in the color profile I created (I can only change the ASCII text input fields). Trying to save the profile gives me the error 'The Document "screenbug.icc" could not be saved.'
    I tried to look for alternative color calibration software, but most of them required hardware, or expensive full version to unlock the settings I needed (like SuperCal).
    I hope some tech savy users out there that can help me, or at least make my life with my macbook less of a pain.
    All help is much appreciated!!
    PS: I've been a loyal Mac user since always. Few things I've learned is:
    1) Don't buy the first version of new hardware. Wait about a month for reviews, to check for issues. I had a problem with an expensive MacPro that had to be replaced, but luckily for free since it was Apple's mistake. Sometimes Apple products also get minor internal changes/fixes without announcements, to help solve reported issues from early buyers.
    3) Take care of you Mac, especially so because you can often sell your used Mac's for quite a value the day you want to upgrade. I've sold about 3 Mac's in my lifetime, for quite a gain, though I don't expect this macbook to do as well, if at all. But it's normally something to be cautious about.
    3) Don't order custom configurations from the Apple Store, if you can live without it (+ it's usually crazy overprices). I payed extra to get the NVidia GeForce 9600M, and was happy with it for the first couple of years, but is now causing me all the problems I have today + made my Macbook worthless.
    Stick with what the default configuration if possible, as other configurations might not have been tested carefully.

    Who exactly is your comment "I am asking you to fix this problem soon" directed at?
    Remember that you are posting on a user to user forum so nobody can really help you.  If you want to give feedback to Apple, then contact them directly at http://www.apple.com/feedback.
    Also, if you have an iPhone 3G and iOS 4.2.1 is the latest software that you can install on your phone, then there is absolutely nothing that anyone can do to fix the problem if you want to install Skype that requires iOS 4.3 - what do you think anyone can magically do?
    iPhone 3G is a very old phone now and if you want to install Skype on your phone, then you need to go out and buy a new iPhone - either a 4s or a 5.  Nothing more to it.  Buy a new phone.

  • Is there a way to change the font size and color of text in the calendar app?

    Does anyone know a way of changing the font size and color of text in the calendar app that comes with the iPad 2?  It is very hard to see the small gray numbers on the calendar.  Thanks

    Looks like you didn't get a reply on your post, but it is still a problem.  Font size is supposedly changeable via "Accessibility" in Settings, but it doesn't work.  You can turn on "Zoom".

Maybe you are looking for

  • Old Apple speakers (M2497) not working with 27" iMac

    I have a much loved pair of old apple speakers, model M2497. They worked fine with my older intel G5 tower, but won't do anything with my new 27" iMac. System prefs show the sound output device as being headphones (although the machine's built-in spe

  • My Lenovo IdeaPad N580 wont charge or turn on PLEASE HELP

    I have been having the problem for about a month now. When i notised it wasn't chargeing i tried everything to fix it googling the problem until the battery finaly died. I sent it to Lenovo Repair depot and after 2 weeks it came back. On the Action r

  • Database Storage Shifting

    Dear All, Our Production Database files are hosted in SAN Storage. Right now we want to movieto a new storage provided by a different storage company I would like to know what are things/procedures to be done from the database side and any links that

  • Steps to read PDF using Java Program that uses LifecycleES Jboss server

    Can anyone please mention the steps to setup the Jboss server in Lifecycle ES suite.... i have program to read PDF that has following contents --and it Fails to connect to LiveCycle server via RMI. Please help me out..... Properties connectionProps =

  • BUSINESS PLACE NOT FILLED IN A DOCUMENT

    Hi, In a document Business place not picked up, now i am facing problem in J1INCHLN. I cannot reverse that document because payment made and clear against that document, check lot assigned, check printed. Please suggest is there any way. Regards Prak