Handoff from OS X to iOS not working, iOS to OS X does work

I have an iPhone 6 running iOS 8.1. I have a 2012 MBP w/ Retina Display with a clean install of OS X 10.10. Both devices are logged into the same iCloud account. Handoff has been enabled on both devices.
I've used Handoff to make and answer phone calls from the MBP.
When I start an email, map session, or iMessage on the iPhone I see the option on the MBP Dock to pick up the session. Handoff is working from iOS to OS X.
When I start an email, map session, or iMessage on OS X I don't see any kind of pop up in the task manager on iOS to handoff in that direction.
Anyone else have a problem with handoff only working in one direction? Any ideas on how to get full functionaility?

I'm having the exact same problem.  I just updated my iMac today so don't know if it's a bug within the new update.  Also, I can't send outgoing e-mail through the mail app on my iMac now either.  I believe I can receive, just can't send as all my mail goes directly to my outbox. 

Similar Messages

  • All my email has disappeared from iCloud.  I did not delete it, and now it's working again, but only from 28 August 2013.  What happened to my old emails? How do I get them back? thanks

    All my email has disappeared from iCloud.  I did not delete it, and now it's working again, but only from 28 August 2013.  What happened to my old emails? How do I get them back? thanks

    Have you checked whether the emails are visible at http://icloud.com ? If they are, it's a problem between your Mac and the website; sign out in System Preferences>iCloud and sign back in again.
    If they aren't, then it's a server problem and you need to contact Support. If you currently happen to have AppleCare, either because you recently bought Apple hardware or have paid to extend the inititial period, you can contact them here:
    http://www.apple.com/support/icloud/contact/
    You will need the serial number of the covered hardware.
    If you are not covered by AppleCare, then - in common with other free email services - there is no free support and you may be asked to pay a fee; if so you should argue that this is a problem they've caused (it's not the first time, by the way) and you shouldn't be charged.

  • My wifes iphone will not allow her to download from the app store when not connected to the computer. Does anyone know what is wrong?

    My wifes iphone will not allow her to download from the app store when not connected to the computer. Does anyone know what is wrong?

    Resetting your Mac's PRAM and NVRAM
    If you have Apple Care you should give them a call.

  • I'm working with directx and it does working only on some of the Bitmaps. Why it's not working on the others ?

    The question is not so clear i will try to explain here.
    I have a trackBar scroll event:
    private void trackBar1_Scroll(object sender, EventArgs e)
    LoadPictureAt(trackBar1.Value, sender);
    ConvertedBmp = ConvertTo24(trackBar1FileInfo[trackBar1.Value].FullName);
    ConvertedBmp.Save(ConvertedBmpDir + "\\ConvertedBmp.bmp");
    mymem = ToStream(ConvertedBmp, ImageFormat.Bmp);
    backTexture = TextureLoader.FromStream(D3Ddev, mymem);
    scannedCloudsTexture = new Texture(D3Ddev, 512, 512, 1, Usage.Dynamic, Format.A8R8G8B8, Pool.Default);
    timer1.Stop();
    Button1Code();
    timer1.Start();
    b1 = ConvertedBmp;
    b1.Save(ConvertedBmpDir + "\\b1.bmp");
    trackBar2.Enabled = false;
    if (!this.backgroundWorker1.IsBusy)
    label2.Text = "מעבד נתונים";
    this.backgroundWorker1.RunWorkerAsync();
    else
    this.backgroundWorker1.CancelAsync();
    First LoadPictureAt method:
    private bool LoadPictureAt(int nIndex, object c)
    bool bRet = false;
    if (nIndex >= 0 && nIndex < trackBar1FileInfo.Length)
    if (c.Equals(trackBar1))
    pictureBox1.Load(trackBar1FileInfo[nIndex].FullName);
    bRet = true;
    if (bitmaps != null)
    if (nIndex >= 0 && nIndex < bitmaps.Length)
    if (c.Equals(trackBar2))
    pictureBox1.Image = bitmaps[nIndex];
    bRet = true;
    return bRet;
    Then the ConvertTo24 method:
    private Bitmap ConvertTo24(string inputFileName)
    sw = Stopwatch.StartNew();
    Bitmap bmpIn = (Bitmap)Bitmap.FromFile(inputFileName);
    Bitmap converted = new Bitmap(bmpIn.Width, bmpIn.Height, PixelFormat.Format24bppRgb);
    using (Graphics g = Graphics.FromImage(converted))
    // Prevent DPI conversion
    g.PageUnit = GraphicsUnit.Pixel;
    // Draw the image
    g.DrawImageUnscaled(bmpIn, 0, 0);
    //converted.Save(outputFileName, ImageFormat.Bmp);
    sw.Stop();
    return converted;
    Then ToStream method:
    public static Stream ToStream(Image image, ImageFormat formaw)
    var stream = new System.IO.MemoryStream();
    image.Save(stream, formaw);
    stream.Position = 0;
    return stream;
    What it does is taking a Bitmap image and make a doppler radar effect on it and detect color only places that there are pixels(clouds) in it.
    Here is a screenshot:
    You can see the doppler shape and it's moving around and highlight the places with clouds.
    So when i move the trackBar1 to the left each time on another Bitmap image it's showing the doppler effect and the clouds.
    The problem is with the trackBar2 scroll event:
    First when i'm running my program and enteric to this new form that scan the clouds and show the doppler radar effect a backgroundworker1 is working:
    private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    BackgroundWorker bgw = (BackgroundWorker)sender;
    if (bgw.CancellationPending == true)
    return;
    else
    while (true)
    bitmaps = ImagesComparison.get_images_with_clouds(b1);
    for (int i = 0; i < bitmaps.Length; i++)
    bitmaps[i] = ConvertTo1or8Bit.ColorToGrayscale(bitmaps[i]);
    break;
    What it does is getting into bitmaps(Bitmap[])  15 new bitmaps from one given bitmap. The given bitmap is b1.
    b1 i'm using it in trackBar1 scroll event.
    All the new Bitmaps in bitmaps variable array are Format32bppArgb.
    While i checked on my hard disk the images(GIF type) i'm using with trackBar1 are all Bit Depth 8.
    The images i'm using with trackBar1 scroll event are GIF types and Bit Depth 8 on the properties.
    The images i'm using in trackBar2 are Bitmaps and they are Format32bppArgb.
    So first thing i thought to convert all the 15 Bitmaps in bitmaps to 8bit:
    for (int i = 0; i < bitmaps.Length; i++)
    bitmaps[i] = ConvertTo1or8Bit.ColorToGrayscale(bitmaps[i]);
    But it didn't work it's just turning them to black gray scale colors not what i was thinking about.
    In the backgroundworker completed event i'm converting the bitmaps to 24 like i'm doing with the Gifs in trackBar1 scroll event:
    private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
    trackBar2.Enabled = true;
    trackBar2.Maximum = bitmaps.Length -1;
    bitmaps[0].Save(ConvertedBmpDir + "\\bitmapsfirstimage.bmp");
    for (int i = 0; i < bitmaps.Length; i++)
    ConvertedBitmaps.Add(ConvertTo24(bitmaps[i]));
    ConvertedBitmaps[0].Save(ConvertedBmpDir + "\\ConvertedBitmapsFirstImage.bmp");
    label2.Text = "עיבוד הנתונים הסתיים";
    b1.Dispose();
    Then in the trackBar2 scroll event:
    private void trackBar2_Scroll(object sender, EventArgs e)
    LoadPictureAt(trackBar2.Value, sender);
    ConvertedBmp = ConvertedBitmaps[trackBar2.Value - 1];
    ConvertedBmp.Save(ConvertedBmpDir + "\\ConvertedBmp.bmp");
    mymem = ToStream(ConvertedBmp, ImageFormat.Bmp);
    backTexture = TextureLoader.FromStream(D3Ddev, mymem);
    scannedCloudsTexture = new Texture(D3Ddev, 512, 512, 1, Usage.Dynamic, Format.A8R8G8B8, Pool.Default);
    timer1.Stop();
    Button1Code();
    timer1.Start();
    The same i did with the trackBar1 scroll event.
    But the result in trackBar2 i'm getting without using the grayscale convertion is this:
    You can see that the color that make the scan now is more yellow or green/yellow and not the same like it is when i'm using the trackBar1.
    I can't figure out where the problem is:
    1. Maybe since the Bitmaps in the variable array bitmaps are all Format32bppArgb ?
    2. Maybe they are Bitmaps and not Gif types like the images in trackBar1 ?
    If it does working good with the gifs in trackBar1 scroll event then the whole code in the new form ScanningClouds is working fine so i will not add to here the whole ScanningClouds form code since it's long.
    The problem is somewhere with the Bitmaps formas or bits in the variable bitmaps.
    Maybe they are not the same or the right Bit Depth or maybe they are Bitmaps and should be Gifs.
    bitmaps = ImagesComparison.get_images_with_clouds(b1);
    This is the get_images_with_clouds method where i'm getting the new 15 Bitmaps.
    public static Bitmap[] get_images_with_clouds(Bitmap radar_image)
    int e = 0;
    int f = 0;
    int image_clock_area_x = 0;
    int image_clock_area_y = 0;
    int image_clock_area_x1 = 140;
    int image_clock_area_y1 = 21;
    Bitmap[] localImages;
    localImages = new Bitmap[15];
    Bitmap image;
    image = new Bitmap(Properties.Resources.radar_without_clouds);
    BitmapData bmD = null;
    BitmapData bmD2 = null;
    try
    bmD = image.LockBits(new Rectangle(0, 0, image.Width, image.Height), ImageLockMode.ReadWrite,
    PixelFormat.Format32bppArgb);
    bmD2 = radar_image.LockBits(new Rectangle(0, 0, radar_image.Width, radar_image.Height), ImageLockMode.ReadOnly,
    PixelFormat.Format32bppArgb);
    IntPtr sc0 = bmD.Scan0;
    unsafe
    int* p = (int*)sc0.ToPointer();
    int* p2 = (int*)bmD2.Scan0.ToPointer();
    for (e = image_clock_area_x; e < image_clock_area_x + image_clock_area_x1; e++)
    for (f = image_clock_area_y; f < image_clock_area_y + image_clock_area_y1; f++)
    Color clock_color = Color.FromArgb(p2[e + f * bmD2.Width]);
    p[e + f * bmD.Width] = clock_color.ToArgb();
    image.UnlockBits(bmD);
    radar_image.UnlockBits(bmD2);
    catch
    try
    image.UnlockBits(bmD);
    catch
    try
    radar_image.UnlockBits(bmD2);
    catch
    int c;
    for (c = 0; c < localImages.Length; c++)
    localImages[c] = new Bitmap(image);
    Bitmap new_image = new Bitmap(Properties.Resources.radar_without_clouds);
    Bitmap new_image1 = new Bitmap(Properties.Resources.radar_without_clouds);
    Bitmap localbmptest = black_and_white(new_image, radar_image);
    Image image1 = black_and_white(new_image, radar_image);
    image1.Save(@"c:\temp\testclouds666.jpg");
    Bitmap clouds = new Bitmap(image1);
    int x;
    int y;
    int a;
    int b;
    int d = 0;
    Bitmap redImage;
    redImage = new Bitmap(512, 512);
    using (Graphics g = Graphics.FromImage(redImage))
    g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor;
    g.PixelOffsetMode = System.Drawing.Drawing2D.PixelOffsetMode.Half;
    g.Clear(Color.Red);
    BitmapData bmData = null;
    BitmapData bmData2 = null;
    BitmapData bmDataArray = null;
    try
    bmData = clouds.LockBits(new Rectangle(0, 0, clouds.Width, clouds.Height), ImageLockMode.ReadOnly,
    PixelFormat.Format32bppArgb);
    bmData2 = radar_image.LockBits(new Rectangle(0, 0, radar_image.Width, radar_image.Height), ImageLockMode.ReadOnly,
    PixelFormat.Format32bppArgb);
    IntPtr scan0 = bmData.Scan0;
    IntPtr scan02 = bmData2.Scan0;
    unsafe
    int* p = (int*)scan0.ToPointer();
    int* p2 = (int*)scan02.ToPointer();
    double h, mm;
    for (d = 0; d < localImages.Length; d++)
    bmDataArray = localImages[d].LockBits(new Rectangle(0, 0, localImages[d].Width, localImages[d].Height), ImageLockMode.ReadWrite,
    PixelFormat.Format32bppArgb);
    IntPtr scan0Array = bmDataArray.Scan0;
    int* pArray = (int*)scan0Array.ToPointer();
    for (a = 0; a < new_image.Width; a++)
    for (b = 0; b < new_image.Height; b++)
    Color color1 = Color.FromArgb(p[a + b * bmData.Width]);
    Color color2 = Color.FromArgb(p2[a + b * bmData2.Width]);
    if (color1.R != 0 || color1.G != 0 || color1.B != 0)
    h = color2.GetHue();
    mm = RadarAnalysis.Hue2MMPerHour(h);
    if (mm >= treshhold_array[14 - d])
    pArray[a + b * bmDataArray.Width] = color2.ToArgb();
    localImages[d].UnlockBits(bmDataArray);
    clouds.UnlockBits(bmData);
    radar_image.UnlockBits(bmData2);
    catch (Exception error)
    try
    clouds.UnlockBits(bmData);
    catch
    try
    radar_image.UnlockBits(bmData2);
    catch
    try
    localImages[d].UnlockBits(bmDataArray);
    catch
    Logger.Write("Error Exception ==> " + error);
    MessageBox.Show("Error Exception ==> " + error);
    return localImages;
    I think not sure but i think the problem is that the images on my hard disk i'm using with the trackBar1 scroll event are Gif type and the images i'm using with the trackBar2 scroll event are 15 Bitmaps.

    Hi,
    "But it didn't work it's just turning them to black gray scale colors not what i was thinking about."
    If you want it to be colored, you'll need to create a color-palette for the 8bppIndexed bitmaps. The keyword for this process is "Color-Quantization".
    The whole yellow-green pie you get is from the wrong format. If you convert the 32bpp bitmaps to 24 bpp bitmaps, you loose the alpha channel ("transparency"). You can manually set one color to "transparent" with the mMakeTransparent-method
    of the Bitmap class, or simply use gif-images (they are 8bpp with a transparent "key"-color)
    Regards,
      Thorsten

  • I do not have the correct version of the flash player, but when I follow the steps to download it, it still doesn't work in Firefox. (It does work in Internet Explorer)

    Every time I click on a video icon, the response I get is that I cannot play the clip because I do not have the correct flashplayer. However, when I click to download it, nothing changes. I even tried disabling my security setting but it still did not work. Unfortunately, the troubleshooting help was too complicated for me to figure out. Is there something basic I can do to make firefox work? It does work on Internet explorer, so obviously the correct program is in my computer - it just won't work on firefox.

    IE uses a different version of Flash than other browsers use.
    1.Download the Flash setup file from here: <br />
    [http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe Adobe Flash - Plugin version]. <br />
    Save it to your Desktop.<br />
    2. Close Firefox using File > Exit <br />
    then check the Task Manager > Processes tab to make sure '''firefox.exe''' is closed, <br />
    {XP: Ctrl+Alt+Del = Processes tab}
    3. Then run the Flash setup file from your Desktop.

  • Image - maps are not working in Firefox but it does work in IE. Some help required.

    Hey there,
    Last week i've been building a website for our company. However, there is still a problem with our banner/slider. I've uploaded some images and the slider is currently working. But the image maps ,using <map> & <area> taggs, are not functional in FF. They do work in IE so I suppose it should be working correctly.
    I've tried using Chrome & Safari but the problem keeps persisting.
    Some help would be nice (:
    Marnix.

    Doesn't work in Firefox, Chrome, and Safari? <br />
    Sounds like you're using non-compliant code.
    http://www.w3.org/TR/html5-author/the-map-element.html <br />
    http://www.w3.org/wiki/HTML/Elements/area
    You could try posting the URL to a test case at the Web Development / Standards Evangelism forum at MozillaZine, and see what they have to say. The support helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Panic.  All my email has disappeared from iCloud.  I did not delete it, and now it's working again, but only from today.  What happened to my old emails?

    Sorry for the long header, but this is my first question.
    Today, for no apparent reason, my iCloud inbox/sent items/junk/trash everything has disappeared from all my devices.  I checked iCloud, and there's nothing up there either.  I did not delete all my email, either intentionally or by accident.
    Meanwhile, iCloud is now working again, but all the old mails are gone, I'm hoping not forever.
    How do I recover all this missing material, which is essential both to my business and personally?
    thanks

    I'm in the same position - this morning all my emails on iCloud have vanished.
    Luckily I  use an IMAP account in Entourage to keep copies on my machine, and I have a backup where all the emails are still visible. But if I connect ot iCloud using entourage they all vanish from entourage as well, so until this is resolved I cannot connect using entourage.
    I have another iCloud account I hardly use, and that's working fine. Similarly my wife's account is also working fine - all her emails are visible in iCloud and in entourage.
    Anybody had a successul way of dealing with this ?

  • EAP-TLS not working on WinXP client, but does work on W2k?

    Hi
    So I've got EAP-TLS setup using a W2K IAS server as RADIUS, W2K certificate server and cisco 1100 APs. I've got computer certs on four notebooks of which 2 are W2k and the other two are XP. On the W2k PCs I am able to pop in my wireless 350 card and get an IP before logging in (as seen via the dhcp server) and then once logged in, the user cert is used to further authenticate and remain connected to the network (as seen via the IAS logs). Yet when I try to pop in my wireless card on the XP PCs, I get no IP address and nothing ever shows up in the IAS logs...the 1100 ap says that its associated but nothing more. Does anyone have any ideas. Thanks
    Jason

    Jason,
    Can you authenticate from the XP clients using LEAP or something other then EAP-TLS?
    If not i would look at upgrading the 350 card drivers on the XP machines to the latest.
    I have had problems before using the cardbus pcmcia adapters on XP, when i installed the latest drivers it worked.
    Let me know how you get on?
    Rgds,
    Paddy

  • Email not working on iPad. Internet does work. This has been the case since I bought cellular time for ipad

    Old emails will open. Will not fetch emails

    I had similar problem - emails stopped downloading to my BT Internet account on iPhone. I picked up Jumbo's tip (to delete BT Internet account from iPhone and) and add under Yahoo! - it worked! Not at all sure how this happened, but annoyed that BT and/or Yahoo! playing silly beggars with my account. Does not give me confidence! Grateful for Jumbo's tip, anyway, as it was driving me nuts not being able to pick up mail on iPhone for about a week.

  • Crackle just got launched on AppleTV but it is not working on PR. It does work on Ipad, iphone, etc...

    Hello,
    I can use Crackle from Puerto Rico using my Ipad, Iphone and other devices. Crackle just got launched on AppleTV but it is not working on PR. So I still have to use airplay to watch Crackle content instead of being able to use the AppleTV.
    Any solutions?
    Thanks in advance....

    Hi Lopez.Mora!
    You may need to contact Crackle directly for this issue. Information on how to reach them can be found in the following article:
    Apple TV: Third-party content provider information
    http://support.apple.com/kb/ht4799
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • My hotmail account is not working on my imac, but does work on pc

    For some reason my hotmail account is not working on my Imac but it is on my Ipad and another pc. Does anyone have an idea what may be wrong?
    Thanks
    Bob

    I have a simmilar issue with my iPhone over Safari, refresh, reply, forward etc just don't work !

  • Genius not working on my iPod (not enough related songs) but genius does work in iTunes. Is anyone else having this issue?

    As above. Can anybody shed some light on this? Could it be because my songs are all saved on an external hard drive?
    Thanks

    I have downloaded the icloud software again.  Made sure all my settings are fine on my iphone and ipad.  Made sure "read only" was not checked on the PhotoSteam properties.  WiFi is connected.
    I have tried all fixes from applesupport that i could find.

  • HT204266 The App store is not accepting my Apple ID, which does work in iTunes

    My App store application on my MacBook Pro is not accepting my Apple ID.  The ID works O.K in iTunes at the store, except when I try to go to the app store and purchase something.  I've changed the Apple ID today, but it still doesn't work in the App Store.
    pfinder

    Is the anyway I can fix this, As I have 3 updates on my computer which I am unable to download due to it not accepting my Apple ID or Password??? Please HELP me

  • In an outgoing email message the "attach" document icon does not work in firefox. It does work when using internet explorer. How can I get the "attach" key to work when using firefox?

    Using firefox, if I am composing a new message in my hotmail account the "attachment" icon is not active, so nothing happens when I click on it in order to attach one of my word documents.
    The "attachment" icon is active when I am using hotmail and internet explorer.

    Firefox 3 will not run on OS X 10.3.9, it requires at least 10.4
    Try one of these browsers to see if you can access Hotmail - [http://www.seamonkey-project.org/releases/seamonkey1.1.19/ SeaMonkey 1.1.19] or [http://caminobrowser.org/download/ Camino 1.6.11]

  • EBay sort function does not work under Firefox 9.0 - does work in IE9

    The sort by pull down menu in eBay still allows you to pull down and select your sort choice, but none of them work under ff9.0 - they worked fine under ff8.0, and still work in safari 5.1.1 and IE9. I'm using Win7 Pro 64bit.

    The same in FF 8.0.1 (Win7 x64 Ult)

  • I am unable to switch the camera calibration from adobe standard to camera standard with a DNG file - it does work to switch with a NEF file

    i hav

    HI THANKS
    I am now using the panasonic GH4 and the Pansonic GX-7.  Lightroom 5 is the
    version I am using.
    thanks
    rebecca

Maybe you are looking for

  • IMac CRT discolored

    Hello from sunny middle Tennessee. I have an iMac 400 DV SE 10-99 build, slot loader with an upgrade 60Gb hard drive and one gig of memory. I love my baby and have lots of USB and Firewire toys for her to play with. However she has lately been turnin

  • Songs/tracks appear only in playlists, not main library

    I have a number of bookmarkable MP3 files that were generated using Audio Hijack to record streaming audio off the web (legally, by the way). These files were always visible in both playlists (smart and regular) and the main library, until I upgraded

  • Why are my iPhone 5 email notifications randomly at full volume with iOS7.1.1 upgrade, regardless of the volume settings?

    Ever since I updated my iPhone 5 to iOS 7.1.1, my email notification ringtone randomly (but infrequently) plays at full volume instead of the assigned ringer volume setting.  My normal ringer volume is at about 50%, none one of the other notification

  • Mysql problem with german special characters

    hi, I wrote a software and it worked quite good, but after I installed it on a new machine with j2se 1.4 I've problems with the german special characters. this code works good on the old machine (jdk 1.3.1) and prints the wanted characters like �,�,�

  • [i3] urxvt has black borders...

    Hi there I'm trying out the i3 window manager and it seems to be quite nice except for one little thing that is driving me mad. urxvt always appears with some black borders around it and I don't know how to remove them. I really can't understand if t