My charger isnt working, anyone know why?

This is the second time this has happened and they gave me a new charger the first time. Ive tried every outlet in my house. Anyone that can help?

Hi d,
drtoni70 wrote:
This is the second time this has happened and they gave me a new charger the first time. Ive tried every outlet in my house. Anyone that can help?
Given that the first one was deemed defective, this one may also be. Contact Apple.

Similar Messages

  • My iPhone 4 wont charge even with a working charger. Does anyone know why?

    My iPhone 4 wont charge with a working charger. I know the charger works because it works in my friends I phone. My phone has been turned off for a couple weeks does anyone know why?

    Try cleaning out the charging port area gently with a wooden toothpick. You would not believe the gobs of lint and fluff that get packed in there, preventing a good connection between the charger and the pins. Good luck!

  • Code not working, anyone know why?

    I'm making a simple pong game, and it's important to me that I use JAVA as efficient as possible (that is, use object orientated stuff, mostly). So, for drawing the ball and the players, I had thought up the following steps:
    - the applet has an array list that contains drawables*
    - if the ball and players need to be drawn, the applet uses a for-each loop, wich will call the draw(Graphics g) of all the drawables in the array list.
    * interface, guarantees that the method public void draw(Graphics g) is pressent.
    This is how I programmed it:
    http://willhostforfood.com/access.php?fileid=32821
    Only problem is, it doesn't work. The method paint() of the applet should result in "Hello World" being drawn on the screen (I know this seems like an eleborate method, but using seperate objects will help organise things once I have like, 20 - 30 balls on screen), but it doesn't.
    Does anyone know why it is not working?

    Here ya go, this is something I did quite a while ago, knock yourself out:
    package RandomColor;
    import java.awt.Canvas;
    import java.awt.Color;
    import java.awt.Cursor;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.image.BufferedImage;
    import java.awt.Image;
    import java.awt.image.MemoryImageSource;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import java.awt.event.MouseWheelEvent;
    import java.awt.event.MouseWheelListener;
    import java.awt.Point;
    import java.awt.Toolkit;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.util.Random;
    public class RandomColor extends JFrame implements MouseListener, MouseMotionListener, MouseWheelListener{
      private BufferedImage myImage = null;
      private Canvas myCanvas = null;
      private Color bgColor = Color.BLACK;
      public RandomColor() throws java.lang.Exception {
        super();
        setUndecorated(true);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setBackground(bgColor);
        Dimension myDimension = Toolkit.getDefaultToolkit().getScreenSize();
        setSize(myDimension);
        setMinimumSize(myDimension);
        JPanel myJP = new JPanel();
        myJP.setBackground(bgColor);
        Dimension dImage = new Dimension(this.getAccessibleContext().getAccessibleComponent().getSize());
        myCanvas = new Canvas();
        myCanvas.addMouseListener(this);
        myCanvas.addMouseMotionListener(this);
        myCanvas.addMouseWheelListener(this);
        myCanvas.setSize(dImage.width, dImage.height);
        myJP.add(myCanvas);
        add(myJP);
    // start of code to hide the cursor   
        int[] pixels = new int[16 * 16];
        Image image = Toolkit.getDefaultToolkit().createImage(new MemoryImageSource(16, 16, pixels, 0, 16));
        Cursor transparentCursor = Toolkit.getDefaultToolkit().createCustomCursor(image, new Point(0, 0), "invisiblecursor");
        getContentPane().setCursor(transparentCursor);
    // end of code to hide cursor   
        pack();
        setVisible(true);
        Random myR = new Random();
        myImage = new BufferedImage((int) (dImage.getWidth()+0.99), (int) (dImage.getHeight()+0.99), BufferedImage.TYPE_INT_RGB);
        int i = myImage.getWidth();
        int j = myImage.getHeight();
        Ball[] myBall = {new Ball(), new Ball(), new Ball()};
        for (int k=0; k<myBall.length; k++){
          myBall[k].setBackGroundColor(Color.BLACK);
          myBall[k].setBounds(0, i, 0, j);
          myBall[k].setRandomColor(true);
          myBall[k].setLocation(myR.nextInt(i), myR.nextInt(j));
          myBall[k].setMoveRate(32, 32, 1, 1, true);
          myBall[k].setSize( 289, 167);
        Graphics g = myImage.getGraphics();
        while(true) {
          for (int k=0; k<myBall.length; k++){
            g.setColor(myBall[k].fgColor);
            g.fillOval(myBall[k].x, myBall[k].y, myBall[k].width, myBall[k].height);
          invalidate();
          paint(getGraphics());
          for (int k=0; k<myBall.length; k++){
            g.setColor(myBall[k].bgColor);
            g.fillOval(myBall[k].x, myBall[k].y, myBall[k].width, myBall[k].height);
            myBall[k].move();
      public void mouseClicked(MouseEvent e){
        exit();
      public void mouseDragged(MouseEvent e){
    //    exit();
      public void mouseEntered(MouseEvent e){
    //    exit();
      public void mouseExited(MouseEvent e){
    //    exit();
      public void mouseMoved(MouseEvent e){
    //    exit();
      public void mousePressed(MouseEvent e){
        exit();
      public void mouseReleased(MouseEvent e){
        exit();
      public void mouseWheelMoved(MouseWheelEvent e){
        exit();
      private void exit(){
        System.exit(0);
      public void paint(Graphics g){
        super.paint(g);
        myCanvas.getGraphics().drawImage(myImage, 0, 0, null);
      public static void main(String[] args) throws java.lang.Exception {
        new RandomColor();
        System.out.println("Done -- RandomColor");
    }Ball Class:
    package RandomColor;
    import java.awt.Color;
    import java.util.Random;
    public class Ball {
      private int iLeft      = 0;
      private int iRight     = 0;
      private int iTop       = 0;
      private int iBottom    = 0;
      private int moveX      = 1;
      private int moveY      = 1;
      private int xScale     = moveX;
      private int yScale     = moveY;
      private int xDirection = 1;
      private int yDirection = 1;
      private boolean moveRandom = false;
      private boolean colorRandom = false;
      private Random myRand = null;
      public Color fgColor = Color.BLACK;
      public Color bgColor = Color.BLACK;
      public int x = 0;
      public int y = 0; 
      public int width  = 1;
      public int height = 1;
      public Ball(){
        myRand = new Random();
        setRandomColor(colorRandom);
      public void move(){
        x = 5 + x + (xScale*xDirection);
        y = 5 + y + (yScale*yDirection);
        if(x<=iLeft){
          x = 0;
          if(moveRandom) xScale = myRand.nextInt(moveX);else xScale = moveX;
          xDirection *= (-1);
          if(colorRandom) setRandomColor(colorRandom);
        if(x>=iRight-width){
          x = iRight-width;
          if(moveRandom) xScale = myRand.nextInt(moveX);else xScale = moveX;
          xDirection *= (-1);
          if(colorRandom) setRandomColor(colorRandom);
        if(y<=iTop){
          y = 0;
          if(moveRandom) yScale = myRand.nextInt(moveY);else xScale = moveY;
          yDirection *= (-1);
          if(colorRandom) setRandomColor(colorRandom);
        if(y>=iBottom-height){
          y = iBottom-height;
          if(moveRandom) yScale = myRand.nextInt(moveY);else xScale = moveY;
          yDirection *= (-1);
          if(colorRandom) setRandomColor(colorRandom);
      public void setColor(Color c){
        fgColor = c;
      public void setBackGroundColor(Color c){
        bgColor = c;
      public void setBounds(int Left, int Right, int Top, int Bottom){
        iLeft   = Left;
        iRight  = Right;
        iTop    = Top;
        iBottom = Bottom;
      public void setLocation(int x, int y){
        this.x = x;
        this.y = y;
      public void setMoveRate(int xMove, int yMove, int xDir, int yDir, boolean randMove){
        moveX       = xMove;
        moveY       = yMove;
        moveRandom  = randMove;
        xDirection  = xDir;
        yDirection  = yDir;
      public void setRandomColor(boolean random){
        colorRandom = random;
        switch (myRand.nextInt(3)+1){
          case 1:  fgColor = Color.BLUE;
                   break;
          case 2:  fgColor = Color.GREEN;
                   break;
          case 3:  fgColor = Color.RED;
                   break;
          default: fgColor = Color.BLACK;
                   break;
      public void setSize(int width, int height){
        this.width  = width;
        this.height = height;
    }

  • I recently bought an iphone 5s on kijii but my rogers nanno does not work, anyone know why?

    Why doenst my iphone work?

    Assuming the seller wasn't lying, contact Rogers to try a new Nano SIM.

  • TS3367 My facetime stopped working anyone know why?

    Can not connect with facetime. Facetime is on and I have good Wi-Fi.

    Judging by all the posts on the forum, there seems to be an issue at Apple's end, although they have made no announcement on their status page. Some users have reported that Apple is aware of the issue. Sadly, we have to wait for Apple to provide some sort of update/fix. You can leave feedback for Apple at the link below.
    http://www.apple.com/feedback/

  • HT201210 trying to download an instal ios 7 on my iphone 4s, after half an hour into the download it came up with a message saying failed and everytime i try again the download doesnt start. tried downloading from itunes aswel but not working. anyone know

    trying to download an instal ios 7 on my iphone 4s, after half an hour into the download it came up with a message saying failed and everytime i try again the download doesnt start. tried downloading from itunes aswel but not working. anyone know why?

    The servers are overloaded. There are a hundred million people all trying to download iOS 7 at one time. Try again later

  • Does anyone know why my music won't play on my 7th generation iPod nano? I tried resetting it already and that didn't work. Can someone please help?

    Does anyone know why my music wont play on my 7th generation iPod nano? I've tried resetting it already but that didnt work. Can someone please help.

    I would to a Restore.  Select the iPod in iTunes.  Go to the Summary tab for the iPod.  There is a button there to do a Restore.  This will erase the iPod, re-install its software, and set it to default settings.  After Restore complete, try playing songs on the iPod again.
    If THAT does not fix the problem, and it's not bad headphones (since you also tried the "speaker"), there is probably a hardware problem on the iPod.  All 7th gen nanos are still under warranty.  If you have an Apple Store nearby, you should take it to the store's Genius Bar.  To minimize waiting, you can make a reservation on store's web page.
    http://www.apple.com/retail/

  • I have an older iMac 5,1 and the disc drive no longer works. I was hoping that I could the Apple USB super drive as a replacement, but the info on the super drive page says compatible with iMac 2012 or later. Does anyone know why it would not work for me?

    I have an older iMac 5,1 and the disc drive no longer works. I was hoping that I could the Apple USB super drive as a replacement, but the info on the super drive page says compatible with iMac 2012 or later. Does anyone know why it would not work for me?

    A reply to similar question (Q & As , in product page Apple Store) says:
    "...dissable the internal reader hardware from devices setup. Then plug the external usb superdrive and that's it."  Answered by Enrique T from Lima Oct  25 2013.
    If you can locate an external Apple USB 'Air" superdrive for earlier model MacBook Air, that should work. The newer one for the Air is the same as for iMac, now.
    You may be able to use other brands of external USB optical drive with your older intel-based iMac, as some of them function capably. A few should also be able to see system discs or other bootable utilities on DVD.
    Hopefully this helps.
    Good luck & happy computing!

  • Hi! I am having a problem with my dictation. It works fine with Greek but it does not work at all with English. Anyone knows why?

    hi! I am having a problem with my dictation. It works fine with Greek but it does not work at all with English. Anyone knows why?

    Have you changed the system voice to an English one in system preferences?

  • Please help. im using a macbook pro versian 10.6.8 every website works on the laptop except for facebook for some reason anyone know why?

    its been a couple days now since my macbooks been playing up someone please help me. ive got firefox, google chrome etc none of them are loading facebook every other websites works fine, facebook takes 5 minutes to load and it goes to a mobile website without loading anyone know why? im using a macbook pro 2011 with ios 10.6.8

    Make sure your Java and Flash are up to date from http://www.java.com/ and http://www.adobe.com/
    Clear your cookies for Facebook as long as you remember the password for it.
    Try a different web browser * if none of the above work.

  • Power Nap doesn't work right in my MBA mid 2011. Anyone knows why?

    I just boght a MBA middle 2011 and power nap doesn't work right on it, specially in Mail app, where it downloads only a few mails and the rest of them are downloaded as usual, when recativate my laptop. Does anyone knows why?... i also tried to download the SMC update, but when i try to install it i get the message that my system is not compatible with the update.
    Please somebody help me!!
    Thanks in adevence!

    http://support.apple.com/kb/HT5394

  • Hi, my mac has stopped playing some avi files (that used to work). I can see the video. Does anyone know why and what i can do? My version of quicktime is 7.6.9.

    Hi i have avi files saved in iphoto that i used to be able to play through quicktime. However in the last few weeks i cannot play many of these files. I can see the videos and click on them but nothing happens (i have version 7.6.9 of quicktime). Does anyone know why this has happened and what i can do about this?
    Thanks.

    What do you mean by what audio/video formats are involved? These are all files from several digital cameras.
    As previously stated, AVI is a file container. It is somewhat old and its originator, Microsoft, dropped official support of it over a decade ago. However, it remains popular with PC users since almost any valid audio and/or video compression format can be stuffed to the file which synchronizes the content by interleaving the individual audio and video frames. The compression format is the specific manner in which the audio and video data are encoded as it is placed in the AVI container. You can find the compression format by inspecting the file in the Finder "Info" window, or in the "Inspector" window of the QT player (or other media player) if the file can be opened.
    For instance, one popular compression combination would be to place DivX encoded video and MP3 audio in an AVI file container. However, neither DivX nor MP3 is natively supported by the QT player. (Although iTunes will natively support the MP3 audio.) Therefore, people who wish to play such files in the QT 7 Player would normally install either the DivX component or Perian but not both. Either installation will independently play such files in the QT Player, but if both are installed, the file will usually stop working since these two codecs can create a playback conflict.
    However, the AVI container could just as easily contain DV along with DV audio. In this case, the file should play correctly in QT since this compression format is natively supported by the basic component configuration that comes in every current OS installation. Therefore, if such files suddenly stopped playing, this could be an indication that a component has been moved or deleted or that your system or QT embedded structure has become corrupted.

  • I wanted to send a push notification, unfortunately it does not work. The page will not load. Anyone know why?

    I wanted to send a push notification, unfortunately it does not work. The page will not load. Anyone know why?

    Push notifications, I believe, is only for iOS.
    If it is for iOS, take a look at Using Apple push notifications with Digital Publishing Suite | Adobe Developer Connection

  • Javascript is not working in Safari on my iPad, version 6.1.3. Anyone know why?

    I have an iPad with os version 6.1.3.  Javascript on websites is not working in Safari. Does anyone know why? How can I correct this situation?

    It is jquery libraries that are not functioning properly and some of the html.  I have Javascript turned on.  The website was working in Safari.  I tested it in Safari and I viewed it many times using Safari and it worked.  I went on to it on 5/8/13 and the javascript/jquery portion and parts of the html are not working.  It had been tested about 4 or 5 months ago in several diffierent versions of IE, Chrome, Mozilla and Safari. 
    Thanks for responding to my question

  • My ipod nano this morning has started to tell me the accessory (lightening to 30-pin adaptor) I use for playing it through my docking station is not supported. It worked fine up until last night. Does anyone know why this might be?

    My ipod nano this morning has started to tell me the accessory (lightening to 30-pin adaptor) I use for playing it through my docking station is not supported. It worked fine up until last night. Does anyone know why this might be?

    Clean any debris from the adapter, docking station connector and the connector on the Nano.

Maybe you are looking for

  • Dynamically assigning aggregation type in a matrix table

    I have a matrix table that will produce multiple summary columns.  These columns should not all use Sum in the Totals row at the bottom.  Some will any of these to be determined at runtime: Sum, Avg, Count, Min, Max.  I have a column in the underlyin

  • How To Use Time Capsule As An External Hard Drive?

    I backup my computer onto the time capsule using time machine. After that I want to have more space on my computer (becasue my hard drive is almost full) (I still want to have my local snapshots and daily backups) so I want to delete some of my files

  • My screen goes all fuzzy when i play an app

    when ever i go into the app Ashphat 5 Free. how do i stop this fro occurring besides deleting the app???

  • Flashing red light on my ACS 4.1

    Hello, I have a flashing red light on my ACS. I have searched on Cisco.com to see what this meant and how I can fix it. I am aware that it is a critical error on the system health for my ACS. But what exactly does that mean? How can I figure out what

  • Which is the Best

    Hi, every body I just want to purchase a new nokia hs. but little confused. I am in India and belong the same. N73 looks nice and N95 also( little costly also). but stil even in other than N series hell of confusion. Can anybody help me. pl. guide me