When using iChat, what could be causing the person I am chatting with to see my daughter's name instead of my name?

I had a regular chat buddy tell me that I was showing up in his chat window as Rosie (Last Name) instead of Michael (Last Name). I had noticed once or twice before when I had gone to Apple support to sign up for an Express Support call (where they call you at an appointed time) that it had Rosie's name instead of mine. I thought that maybe my daughter had called in for technical support or something.
But after my chat buddy said he saw it on his chat window, I logged into the Manage your Apple ID site and sure enough it had the wrong first name assoicated with this Apple ID! So, I edited that back from my daughter's name to mine and submitted that change.
Well, that chat buddy is still seeing me as Rosie, even though it all looks correct now at the manage Apple ID site.
I'm not sure what to do. My daughter has her own Apple ID which is part of our MobileMe family plan. So, I guess in that sense there is some linkage between hers and mine. But that shouldn't create a problem should it? It's a unique username. I think they're only connected in a billing sense. And they soon won't be in iCloud.
Can anybody tell me why this is happening?

Hi,
What I meant by "First Name" is the one at the top of the list as it were when the Family account was set up.
(All the other sub-accounts tend to be regarded as Aliases)
As @me.com names can now be linked to iCloud IDs  it may pay to look at separating the account out into different IDs in their own right.
9:51 PM      Wednesday; February 22, 2012
Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
  iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
 G4/1GhzDual MDD (Leopard 10.5.8)
 MacBookPro 2Gb (Snow Leopard 10.6.8)
 Mac OS X (10.6.8),
"Limit the Logs to the Bits above Binary Images."  No, Seriously

Similar Messages

  • RE: (forte-users) What could have caused the StopWatch classto r eturn

    Attila
    1. Ops - I DO instantiate it as follows:
    [snip]
    sw : StopWatch = new;
    [snip]
    I missed the "= new" in the orig mail message (cut/past from wrong
    workspace).
    2. LogWriter(deltaT:integer, t1:DateTimeData, t2:DateTimeData)
    [snip]
    task.part.logmgr.put('| ');
    task.part.logmgr.put(deltaT);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t1);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t2);
    task.part.logmgr.putline(' |');
    [snip]
    OK, it's just a quick 'n dirty but it does the job for testing.
    Regards,
    Dirk
    -----Original Message-----
    From: Attila Rácz [mailto:[email protected]]
    Sent: Thursday, 7 October 1999 14:35
    To: Haben, Dirk
    Subject: Re: (forte-users) What could have caused the
    StopWatch class to
    return a negative v alue?
    Hi Dirk,
    1. You don't instantiate the StopWatch object!!! So the
    attached code have to
    throw a NIL exception. On my PC it does:
    "Trying to invoke a method on a NIL object (qqos_StopWatch, 1)."
    2. Send the whole LogWriter method for analyzing.
    Attila
    "Haben, Dirk" wrote:
    G'day
    Suppose the following output is produced:
    Loaded Forte Message Catalog 'fortemsg/en_us.cat'
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition CollectResponseStatistics_cl0_Client built on 30-Sep-1999
    09:12:28.
    Attached to manager for node BLAH.
    %DiH-I-VERID: CollectResponseStatistics_v371.002
    %DiH-I-BGP, BGP Started...
    %DiH-I, Repeat Interval (in milliseconds) 300000
    %DiH-I, Sample Account Number: 123456
    %DiH-I-BGPSTART, BackgroundProcessing started at: 07-Oct-1999 08:54:16
    | Total Time | Account Fetch | Account Fetch |
    | in milliSeconds | Start Time | Completion Time |
    |-----------------|----------------------|----------------------|
    | -194 | 07-Oct-1999 08:54:16 | 07-Oct-1999 08:54:17 |
    What could cause the stopwatch class to return this negative value? Here is
    the code that is run:
    sw : StopWatch;
    //that line is actual as follows:
    sw : StopWatch = new;
    //*****[Dirk]
    >>
    BP_t1 : DateTimeData = new;
    BP_t2 : DateTimeData = new;
    BP_t1.SetCurrent();
    self.LogWriter('%DiH-I-BGPSTART, BackgroundProcessing started at: ',BP_t1);
    self.LogWriterHeading();
    tmpAcc : account = new;
    sw.fire();
    BP_t1.SetCurrent();
    tmpAcc = self.AccountFetch(aAccountNumber);
    BP_t2.SetCurrent();
    deltaT : Integer = sw.split();
    self.LogWriter(deltaT,BP_t1,BP_t2);
    Oh, and the logwriter is just a formatted logmgr.put(deltaT) ,
    logmgr.put(t1) etc
    Any light on this one much appreciated.
    Thanks,
    Dirk
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    [email protected]
    Attila Racz Lufthansa
    Systems Hungary
    BUD LSYH
    E-mail: [email protected] .-``'.
    Tel.: (36 1) 431-2910 .` .' Mazsa ter 2-6.
    Fax : (36 1) 431-2977 _.-' '._ H-1107
    Budapest, Hungary

    Attila
    1. Ops - I DO instantiate it as follows:
    [snip]
    sw : StopWatch = new;
    [snip]
    I missed the "= new" in the orig mail message (cut/past from wrong
    workspace).
    2. LogWriter(deltaT:integer, t1:DateTimeData, t2:DateTimeData)
    [snip]
    task.part.logmgr.put('| ');
    task.part.logmgr.put(deltaT);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t1);
    task.part.logmgr.put(' | ');
    task.part.logmgr.put(t2);
    task.part.logmgr.putline(' |');
    [snip]
    OK, it's just a quick 'n dirty but it does the job for testing.
    Regards,
    Dirk
    -----Original Message-----
    From: Attila Rácz [mailto:[email protected]]
    Sent: Thursday, 7 October 1999 14:35
    To: Haben, Dirk
    Subject: Re: (forte-users) What could have caused the
    StopWatch class to
    return a negative v alue?
    Hi Dirk,
    1. You don't instantiate the StopWatch object!!! So the
    attached code have to
    throw a NIL exception. On my PC it does:
    "Trying to invoke a method on a NIL object (qqos_StopWatch, 1)."
    2. Send the whole LogWriter method for analyzing.
    Attila
    "Haben, Dirk" wrote:
    G'day
    Suppose the following output is produced:
    Loaded Forte Message Catalog 'fortemsg/en_us.cat'
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition CollectResponseStatistics_cl0_Client built on 30-Sep-1999
    09:12:28.
    Attached to manager for node BLAH.
    %DiH-I-VERID: CollectResponseStatistics_v371.002
    %DiH-I-BGP, BGP Started...
    %DiH-I, Repeat Interval (in milliseconds) 300000
    %DiH-I, Sample Account Number: 123456
    %DiH-I-BGPSTART, BackgroundProcessing started at: 07-Oct-1999 08:54:16
    | Total Time | Account Fetch | Account Fetch |
    | in milliSeconds | Start Time | Completion Time |
    |-----------------|----------------------|----------------------|
    | -194 | 07-Oct-1999 08:54:16 | 07-Oct-1999 08:54:17 |
    What could cause the stopwatch class to return this negative value? Here is
    the code that is run:
    sw : StopWatch;
    //that line is actual as follows:
    sw : StopWatch = new;
    //*****[Dirk]
    >>
    BP_t1 : DateTimeData = new;
    BP_t2 : DateTimeData = new;
    BP_t1.SetCurrent();
    self.LogWriter('%DiH-I-BGPSTART, BackgroundProcessing started at: ',BP_t1);
    self.LogWriterHeading();
    tmpAcc : account = new;
    sw.fire();
    BP_t1.SetCurrent();
    tmpAcc = self.AccountFetch(aAccountNumber);
    BP_t2.SetCurrent();
    deltaT : Integer = sw.split();
    self.LogWriter(deltaT,BP_t1,BP_t2);
    Oh, and the logwriter is just a formatted logmgr.put(deltaT) ,
    logmgr.put(t1) etc
    Any light on this one much appreciated.
    Thanks,
    Dirk
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    [email protected]
    Attila Racz Lufthansa
    Systems Hungary
    BUD LSYH
    E-mail: [email protected] .-``'.
    Tel.: (36 1) 431-2910 .` .' Mazsa ter 2-6.
    Fax : (36 1) 431-2977 _.-' '._ H-1107
    Budapest, Hungary

  • Daughter's new Mac laptop loses connection after about 15minutes on her apartment cable provider network.  Her roommates older Mac works ok as did my daughters olde MacBook what could Be causing the shutoff?

    Daughters new macBook loses connectivity on wifi at her apartment after about 15 minutes but works fine on other wifi networks. Her roommates older MacBook works fine on wifi as did my daughters older MacBook.  what could Be the cause?---mmannaxx

    Assuming this does not happen at a specific time of day but randomly when ever she connects, she may need to power cycle the modem/router, with the MBP off, after it reestablishes connection and IP addresses, then power up the MBP and reconnect. 

  • What could've caused these marks on the casing?

    Hi forum.
    I've recently given back the Powerbook G4 I was using on my old job. Being depressingly Mac-less, I'm buying a new MBP.
    On my old one, I managed to leave behind some interesting and very odd looking marks on both sides of the touchpad. In a wide area presumably where the pawn of my hands were resting evolved a bunch of marks that could look kind of like acid burns.
    I would really like to think my hands are not dissecting acid, and further not like to cause these marks on my new MacBookPro.
    I'm therefore looking for someone who has seen something like this before, and has some tips and hints on what could be causing it, and how to prevent it.
    See some pictures of it:
    http://crooncore.dk/powerbook_marks.JPG
    http://crooncore.dk/powerbook_marks2.JPG
    Regards,
    kspr
    Powerbook G4   Mac OS X (10.4.8)  

    Isn't this funny.
    You buy a MBP, and think it is a nice machine, and the next moment you have to realize that all the design just reduces functionalty to be ridiculous...
    Why using such an finish for an object that is being used with your hands... next you will probably be able to buy the super iGloves not to scratch or harm you MBP ("others buy ugly magnesium computers, but you have the chance to look great with your novel iGloves and your shiny aluminium case").
    Hey come on Apple, design is good but functionnality is first. You are really fooling your customers. By the way, shouldn't design take care of the fact that transportable computer may be droped once in a while? I better not imagine how this computer looks like afterwards.
    Well hopefully they will start again one day to change their goals.

  • I've just downloaded Sophos (yesterday) and commenced the scan. It keeps stopping part way through, the 2nd time when it was about 98% completed after 4 hours!!!! I've had to start again. What could be causing this? I have Mountain Lion.

    I've just downloaded Sophos (yesterday) and commenced the scan. It keeps stopping part way through, the 2nd time when it was about 98% completed after 4 hours!!!! I've had to start again. What could be causing this? I have Mountain Lion.

    Thomas A Reed wrote:
    You will be advised by people here that Sophos is "junk" and should be removed {...} Sophos actually works pretty well, in my testing, and so I would suspect that there may be an underlying problem with your file system that needs to be repaired.
    FWIW, I have used Sophos regularly for several years now (including on my new iMac running Mountain Lion versions 10.8.2 & now 10.8.3) & never had any problems with it on any of the half dozen or so Macs I have installed it on.
    Quite a few people automatically assume all Mac A-V software is troublesome junk, & many will leap to the conclusion it is the cause of some problem without considering other potential (& often much more likely) causes, regardless of which A-V product is installed.
    Obviously I hope, not all A-V products are alike, so it doesn't make a lot of sense to me to condemn them all because of problems with one of them. Regarding Sophos in particular, finding first hand reports of it causing problems is quite difficult -- typically, if you ask for the details it turns out to be a second or third hand report & there isn't enough info available to know for certain if it is the real cause or not.
    This is not to say it is impossible for it to cause problems, just that it is prudent to consider all the possibilities before concluding that any one of them is the cause.

  • Appears and quickly disappears a new screen overlaying the screen in use, it starts at the bottom of the screen tela.MACbook pro retina.O what could be causing this?

    appears and quickly disappears a new screen overlaying the screen in use, it starts at the bottom of the screen tela.MACbook pro retina.O what could be causing this?

    Thanks for the suggestion, the next step was to call Apple, who gave me a claim number, which I discovered you must have to get anything done with them.  They refered me to a Apple store or repair center, after some reseach took it to the Computer Store in Mobile, Alabama and they were excellent.  They took pictures of the screen with bug submitted it to Apple who denied the claim but they kept kicking it up to the next level and finally Apple agreed to sent new cover.  The Computer Store had the cover the next day, they changed it out and now I am bug free.  If your in the area of Mobile Alabama you can feel good about getting help from the Computer Store.  For the two folks that responded to my note, Thank You, good comments and good advice.

  • I have an apogee ensemble that I am using with Logic that was working fine 2 days ago but now it is seeing the apogee but giving me a conflict era and I can't get sound through my mixing board. What could be causing it, I haven't changed any settings

    I have an apogee ensemble that I am using with Logic that was working fine 2 days ago but now it is seeing the apogee but giving me a conflict era and I can't get sound through my mixing board. What could be causing it, I haven't changed any settings

    OK, but in my ipad, the apple id i have in itues is already the one  iwant to have, but th one i used to sin in for i-coud is the other one. Any tip as to how to change the apple id for icloud and any idea how to know what apps i bought with the other apple id so as to delete them from my ipad to avoid being asked to enter another apple id every time they get updated? thanks!

  • I use itunes to play music through my airport express but sometimes the songs cut out sporatically.  a song will be playing along then all of a sudden there is intermittant music and silence. What could be causing this?

    i use itunes to play music through my airport express but sometimes the songs cut out sporatically.  a song will be playing along then all of a sudden there is intermittant music and silence. What could be causing this?

    I finally resolved my problem after spending way too much time on it. I simply handed my 160GB iPod to my husband to put his fav Stones & Beatles songs on and I went back to my 80GB Microsoft Zune which has never disappointed me.
    After spending so much time trying to figure this out I did finally take it back to Apple Store who performed a diagnostic and found there was a problem with the device. They replaced it with a refurbished one which has similar issues. All I wanted to do was listen to my music. Was that too much to ask? So I am happy to be free of this problematic device. No more Apple for me!!

  • My iPad isn't working properly. When I try to connect to the internet or follow a link it shuts down and returns to the main screen. Any clue as to what could be causing this? Not my internet connection, I checked that.

    My iPad isn't working. I cannot follow a link in an email or connect to a game. It goes to a black screen then back to the main screen. Any idea what could be causing this?

    Settings > General > Reset > Reset Network Settings
    Perform a "hard reset" on the device by pressing down and holding the home button and the sleep/wake button for up to 30secs. until you see a black screen with the Apple logo, then release.
    Then test to see if it solved the problem.

  • THE LINKS AT THE TOP OF ANY WEB PAGE NO LONGER WORK. wHAT COULD BE CAUSING THIS

    WITHIN THE LAST FEW DAYS NO MATTER WHAT WEBSITE I GO TO THE LINKS IN THE BANNER OR TOP PORTION OF THE PAGE DO NOT WORK. THE SYSTEM DOESN'T SEEM TO KNOW THAT THEY ARE LINKS WHEN I HOVER OVER THEM I GET THE MOUSE ARROW ICON INSTEAD OF THE HAND LIKE I DO ON ALL OTHER LINKS ON THE PAGE. THE LINKS ON THE SIDES AND BOTTOM OF THE PAGE WORK JUST FINE. WHAT COULD BE CAUSING THIS?

    That is a problem with the Yahoo! Toolbar.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • On my PC, iTunes 11.0.3.42 causes it to hang when attempting to view a .MOV (1.6GB) requiring a cold boot. What could be causing this?

    On my PC running windows XP Service Pack 3, iTunes 11.0.3.42 causes it to hang when attempting to view a .MOV (1.6 GB) requiring a cold boot. What could be causing this? Corrupted .MOV? Too little RAM? It successfully plays a 162 MB .MOV.

    Hello David,
    Thank you for providing all that information about the iTunes issue you are experiencing.  We would first want to rule out any software issues before we can determine if it has to do with RAM.  I found an article that will help you isolate and troubleshoot software issues that could be causing iTunes to behave this way:
    iTunes for Windows XP: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1421
    I hope this helps you get back on track with watching movies in iTunes! 
    Best,
    Sheila M.

  • I purchased 2 ipad mini's at Xmas, I then sync'd them with itunes on my pc, and put basically the same apps on each of them. Both are 16gb units. One of them is full ( with over 9gb of "other" memory) the ipad still has 10gb left.What could be causing thi

    I purchased 2 ipad mini's at Xmas, I then sync'd them with itunes on my pc, and put basically the same apps on each of them. Both are 16gb units. One of them is full ( with over 9gb of "other" memory) the ipad still has 10gb left.What could be causing this "other" storage

    How much space is used by your Other? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    How to Remove “Other” Data from iPhone, iPad and iPod Touch
    http://www.igeeksblog.com/how-to-remove-other-data-from-iphone/
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6/7, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
    What is “Other” and What Can I Do About It?
    https://discussions.apple.com/docs/DOC-5142
    iPhone or iPad Ran Out of Storage Space? Here’s How to Make Space Available Quickly
    http://osxdaily.com/2012/06/02/iphone-ipad-ran-out-of-available-storage-space-ho w-to-fix-quick/
    6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch
    http://osxdaily.com/2012/04/24/6-tips-free-up-storage-space-ipad-iphone-ipod-tou ch/
    Also,
    How to Clear Message/iMessage Cache on iPhone & iPad And Reclaim Lots of Free Space
    http://www.igeeksblog.com/how-to-clear-message-imessage-cache-on-iphone-ipad/
     Cheers, Tom

  • HT4009 I keep getting a message to contact itunes support when I try to make an in app purchase.  What could be causing this issue?  My credit card is up to date and in app purchases aren't restricted.

    I keep getting a message to contact itunes support when I try to make an in app purchase.  What could be causing this issue?  My credit card is up to date and in app purchases aren't restricted.

    Have you tried contacting iTunes Support and asking them ? We are fellow users here on these forums, it could be due to a number of reasons, we won't know which one.
    http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • The product images on certain websites i go to on my ipad do not appear (ie. gap)? I never had this problem before...what could be causing this?

    The product images on certain websites i go to on my ipad do not appear (ie. gap)? I never had this problem before...what could be causing this?

    Thanks for your input however, what I don't understand is that some of the product images do appear on the site but not all images? The first 10 product pics appear but then, it's just the product descriptions after that with no images? I find it strange that it used to work on this particular site (mainly Gap and Old Navy) and now it doesn't? I do a lot of online shopping there so it's unfortunate. I contacted their online support and they said to download the Opera Mini App but that didn't work...I see even less images? If I visit the site on my Ipod Touch or my Macbook, I see all images, no problem? Not sure what the problem is?

  • I have had two movie rentals, stop in the middle of downloading tonight, both giving me the error message "(err = 50)" -- It looks like its a network connectivity message, but I'm connected.  Any idea on what could be causing this?  No info anywhere!

    I have had two movie rentals, stop in the middle of downloading tonight, both giving me the error message "(err = 50)" -- It looks like its a network connectivity message, but I'm connected.  Any idea on what could be causing this?  I cannot find info anywhere!
    Thanks for any help

    If you have anti virus software installed, disable that.
    Try turning off the Firewall in System Preferences > Security
    iTunes: Advanced iTunes Store troubleshooting
    It would help when you post to tell us which Mac OS X you have installed. Thank you !!

Maybe you are looking for

  • Top N Parameter

    Hello Experts - I'm using the Top N Parameter variable supplied by SAP but its not functioning the way its supposed to. No matter what number I give in the prompt, I get all the rows. Rows: Sold-to party Material Statement Grp Columns: Billed qty Net

  • Gaming with 24" iMac

    I just got a new 24"iMac and like to try to play some games I was thinking the new Bioshock for Mac and like to get a gamepad for it as well.Anybody has experience with these two items?I know that the game is new but the gamepad I am thinking of some

  • Can I get the circle graphs back in Activity Monitor in Mavericks?

    Can I get the circle graphs back in Activity Monitor in Mavericks?

  • Combobox whose datasource is from an hashmap

    Hello I work on a J2EE/Struts2 project On a jsp, I have a combobox whose datasource is from an hashmap In the action, I can't find how can I get the selected item (the selected key of the object selected in my combobox) in order to load my object (wi

  • TS4494 Do you know if the Apple wireless keyboard work on windows 8??

    I'd like to introduce my cousin to the apple world giving him as a birthday present an apple wireles keyboard, but he uses windows 8 on his laptop. Does anyone knows if it is compatible ?