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/

Similar Messages

  • I've set up a new iMac and transferred my library.  Now, when I switch on iTunes Match it gets to about 25% on stage 1 and just stops working,  Anyone know how to fix this?

    I've set up a new iMac and transferred my library.  Now, when I switch on iTunes Match it gets to about 25% on stage 1 and just stops working,  Anyone know how to fix this?

    Ok, so the likely cause is 1 or more Songs are tripping up iTunes Match.  To resolve, move to Song view, switch on iCloud Status and iCloud Download fields - sort the view on iCloud Status - identify Songs with status other than Purchased, Matched or Uploaded.  Temporarily remove them from the library, allow iTunes Match to complete the 3-step process.  Gradually import the Songs back in - any that cause a repeat failure, place in a playlist, burn to audio CD and import as 256k AAC.
    Note:  iTunes Match service in UK at present is intermittant, may be worth trying from 1200 tomorrow to give Apple the chance to complete its current updates.

  • TS3367 I try to facetime someone, and it keeps saying "connecting" then it says "facetime failed". Anyone know why?

    My facetime won't connect and it keeps saying "facetime failed". Any word on why and if it will be fixed?

    Same here.
    Since wednesday night, FaceTime stopped working on all of my devices, MacBook Pro 2011 OSX 10.8.5, iPhone 4 iOS 6.1.3 and iPad 4 with the latest iOS 7.1. I don't want to update my iPhone 4 to iOS7 because the speed issue and the new look. My son is 2 and everyday he would talk and play with my mom through iPad. He has been very upset since wednesday night because he cannot call grandma on iPad!! So today after I tried everything, I thought backed up my iPad 4 and get the factory reset to get the clean start might help, but still, FaceTime just won't connect at all. At the end of day, I completely gave up and turned on Skype instead. It works equally well, even my mom liked the Skype better, she like the Skype's brighter render, the gamma ray is more stable and plesant to use, compare to FaceTime's overly-sensitive gamma control, usually render the screen darker than the real setting.
    Everyone take a look here. Apprently this issue is not your ISP's problem, nor it was iOS related. I believe it has something to do with Apple.
    http://www.idownloadblog.com/2014/04/17/facetime-connectivity-issues-reaching-ma ny-ios-users/

  • 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;
    }

  • TS3367 My FaceTime stopped working

    FaceTime stopped working

    you need to update to iOS 7.1.1
    Read this link:
    http://support.apple.com/kb/ts5419?viewlocale=en_US

  • I updated my iPad to the new ios6, Facetime stopped working, any clues why?

    Updated my iPad to ios6, Facetime ne longer working. Any clues?

    well thanks to no one i fixed it myself all i needed to do was shut it down and turn it back on now every thing is back working

  • 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.

  • TS2326 FaceTime stopped working anyone had this problem?

    Hi all, I suddenly can't use or connect with anyone on ft. It's frustrating. Anyone having same issues and if so was it sorted and how?

    Apple has released a document which is reported to address the recent FaceTime issue.
    http://support.apple.com/kb/TS5419

  • 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.

  • 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

  • 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.

  • My photoshop keeps freezing after a while after use and it just stops working to where even if i'm working on one document the exe running gets up to around 505mbs does anyone know why

    Does anyone know why this is happening> my mb's get up to 500 just when i'm working on one photo and Photoshop stops working randomly

    Please read these (in particular the section titled "Supply pertinent information for quicker answers" because I for one am not clear on what’s happening exactly):
    http://forums.adobe.com/docs/DOC-2325
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html

  • HT4759 After I add a new PC to synchronize Outlook contacts and calendar with icloud, another PC/Outlook stops synchronizing that had been working fine.  Does anyone know why this happens repeatedly?  Is there a limit to the # of PCs that synchronize with

    After I add a new PC to synchronize Outlook contacts and calendar with icloud, another PC/Outlook stops synchronizing that had been working fine.  Does anyone know why this happens repeatedly?  Is there a limit to the # of PCs that synchronize with iCloud

    Not possible.

  • Hi, i have a problem that my macBook pro keys suddenly stopped working. The power button,volume keys, brightness keys and shortcuts do not work. Does anyone know why or how i can fix this problem?

    hi, i have a problem that my macBook pro keys suddenly stopped working. The power button,volume keys, brightness keys and shortcuts do not work. Does anyone know why or how i can fix this problem?

    hi, i have a problem that my macBook pro keys suddenly stopped working. The power button,volume keys, brightness keys and shortcuts do not work. Does anyone know why or how i can fix this problem?

  • My computer won't play videos from site like the Daily Show and the CW, but they stopped working last week. I have the newest version of Adobe player. Anyone know why the full videos will not play?

    My computer won't play videos from site like the Daily Show and the CW, but they stopped working last week. I have the newest version of Adobe player. Anyone know why the full videos will not play?

    I failed to mention that the sound does play on the videos that are not playing.

Maybe you are looking for