Apple id mess (alias as id $ @mac/@me problem)

First of all I want to say that I have read almost everything about apple id, icloud, mobileme, etc. and that I know that I can not merge or delete accounts.
Second, just point out that maybe my English is not clear enough so be patient. Thanks in advance.
My situation right now is:
-Mobileme -> iCloud id. Let's say "[email protected]"
-iTunes Store. Let's say "[email protected]"
I would like to forget about my gmail account so I would like to change that apple id. Because I can not merge and I don't want to lose all my purchased items I think maybe it's possible to use a @me alias as primary email on the itunes account and then select it as apple id.
This alias was created on mobileme (I don't know if this is important). I don't want to mess things more so I want to check if this is possible before try anything. So can I use an alias as primary email and apple id for separate account??
And If this can be done, what I have to do later? I have never change my apple id so I would appreciate the steps to set up everything in my mac, ipad, itunes store, etc.
On the other hand, I detect another problem when I have tried to log in to this forum community: I found that my original username (aka.seim) was linked apparently to a @mac.com account.
It has been imposible to log in to the forum with that user name. After a lot of research I solved a problem with the primary email that was my itunes / gmail account. But after change the primary email to another I have never use on apple the problem didn't solve and the web ask me everytime I try to log in for a new username.
No problem, I have made a new one username for the forum (this one) with my icloud id, but my doubt is: due to the @mac account and my @me account uses the same data ("[email protected]" and "[email protected]") can this produce any conflict??
They have two different password but I'm not really sure because I don't remember if I transfer this @mac account to mobileme (and then to iCloud) or I just create a new mobileme account with the same data.
As I have told, I know I can delete or merge this account to solve my doubts and maybe there is no problem with having both active but I would like to make sure. Thanks.
Hope someone can understand everything :-) and help me.
Thank you so much.

The apps you downloaded using your old ID will forever remain tied to that ID and when you want to update them, they will ask for the Apple ID you first used to download them.
Try to see if you can remember what the password was or try to reset your password at www.iforgot/appleid.com
If your iPhone 4 is on iOS 7 and you activated it using your old Apple ID, you will still need to enter that old Apple ID to reactivate your iPhone (for example after a restore of the iOS).  Therefore, I suggest you try to recover your old Apple ID even if you continue to only use the new one.

Similar Messages

  • How come every time I change my password for iCloud, iMessage, Apple, it either messes up on my Mac or iPhone.

    How come every time I change my password for iCloud, iMessage, Apple, it either messes up on my Mac or iPhone.

    I'm not sure what you mean by "messes up", but the most common reason to have trouble with one device after changing the password from another is that you have to actually go around to all of your devices and change the saved password for your Apple ID on each one if you change it on one of them, they don't update automatically.  If you change the password and don't change it on your devices, then they don't know the password has changed until you try to use them.

  • How to connect my studio display with a Apple display connector to my new mac mini

    How can I connect my studio display with a Apple display connector to my new mac mini?

    https://discussions.apple.com/message/8315498#8315498

  • How do I use an apple tv remote to control my mac

    I am having a macbook pro with retina. How do I use an apple tv remote to control my mac?Is there a way. For eg. if I want to control the volume using the remote how do I do?

    No, the iPad has no IR receiver. (I think you mean "Airplay" and not "Airdrop", by the way.)

  • HT5621 I changed my email address and therefore changed my Apple ID and password on my Mac. Now when i want to use iCloud on my iPad and my iPhone my old email comes up as my Apple ID and I cant log in or update any apps on my iPhone or iPad. Can you help

    I changed my email address and therefore changed my Apple ID and password on my Mac. Now when i want to use iCloud on my iPad and my iPhone my old email comes up as my Apple ID and I cant log in or update any apps on my iPhone or iPad. Can you help me?

    Downlands wrote:
    Cant sign out. No password for now reduntant appleid
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support

  • Applet in Apple Mac OSX problem

    Hi all,
    have developing an applet long while using WinXP platform, everthing seem ok, but when i try over Apple Mac OSX, i has a loading problem saying that init failed to load ArrayList as error message said:
    ArrayIndexOutOfBound, 0...
    but when i debug print out the ArrayList content and its length, i'm sure that this ArrayList is NOT NULL and its length is NOT ZERO either. what is happening here? oh, ya, this only happen in Safari, in FireFox for Mac no problem, even Camino also pass the test, why? anyone have idea about this? because i'm new to Apple Mac.
    also, there is another question whereby, when i use FireFox for Mac to load the applet, the applet load seem no problem but it just can't display properly. what i mean is that in Windows platform (IE6), this applet show entire applet successfully, but when i try it in Mac, it show only a part of applet without any error, but when i try to refresh the page, applet is now successfully show, why?
    lastly, when a button of an applet being click and this will bring a new window with some parameters value, its work on IE in Windows platform, why it won't work for FireFox or Safari for Mac? i see prompt out saying is security problem, is there any workout of this? thanks. to summary out of junk above:
    _______________________________FireFox_____Safari_____IE
    _______________________________Win | Mac_____Mac____Win
    1. load applet for 1st time___________OK_|_NO_____FAIL____OK
    2. refresh applet after 1st load failed___OK_|_OK_____FAIL____OK
    3. when applet button click (security)___OK_|_NO_____-_______OK
    p/s: all above test was using same applet with same parameter and value.
    below is the sample i capture from Apple Mac just now:
    http://img.photobucket.com/albums/v660/ahbeng78/Apple_Mac.png
    Message was edited by:
    ahbeng78

    i has a loading problem saying that
    init failed to load ArrayList as error message
    said:
    ArrayIndexOutOfBound, 0...Well, post the stack trace.
    but when i debug print out the ArrayList content and
    its length, i'm sure that this ArrayList is NOT NULL
    and its length is NOT ZERO either. You can still get an out of bounds exception with those conditions. The list could exist, its length could be N, but you're trying to dereference position N + 5, for example.
    try it in Mac, it show only a part of applet without
    any error, but when i try to refresh the page, applet
    is now successfully show, why?My guess is that you're not calling repaint() when you should, but that's just a guess.
    lastly, when a button of an applet being click and
    this will bring a new window with some parameters
    value, its work on IE in Windows platform, why it
    won't work for FireFox or Safari for Mac? i see
    prompt out saying is security problem, is there any
    workout of this? thanks. to summary out of junk
    above:Often you can sign applets so they can do things that unsigned applets aren't allowed to do.
    Maybe you're making some kind of security mistake that Firefox and Safari are (properly) catching but IE isn't. In any event, post the error message.

  • TS4001 Bookmarks are not syncing to ONE of my Macs, but showing up on other Mac (work), iPhone 4 and iPad 1. Macs are on Mountain Lion. Tried all of Apple's suggestions - and the one Mac is still not updating/syncing Bookmarks or Reading List. What's goin

    Bookmarks are not syncing to ONE of my Macs, but showing up on other Mac (work), iPhone 4 and iPad 1. Macs are on Mountain Lion. Tried all of Apple's suggestions - and the one Mac is still not updating/syncing Bookmarks or Reading List. What's going on? Do I have to wait to OS update? It seems lots of peolple were having issues before ML, but I as fine. Since ML, I am having all kinds of issues!

    Yeah, I literally have tried everything except deleting my iCloud account (I'm close, but that would require so many changes that it is way too painful to consider at this point).
    I am still waiting to hear back from Apple Support. Hopefully something can be done, or they can do a reset on their end.
    Thanks for taking the time to respond though, much appreciated!

  • I want the best Apple Person To Build me a Mac .....I'm not Crazy

    For the 1st time in my life I am able to get the Mac of my dreams, I'm disabled and I have spinal problems, one day I may not be able to walk very far!
    I need the best Apple Person to build me a Mac Pro LapTop, or a Desktop Mac Pro, I was a Systems Engineer on Apple Computers until 1996 when I was disabled W/Cancer
    and I still know a good bit about my Mac's I have a G4/500mhz that I put a OWC Mercury 1.2ghz processor in and 1gb of ram I'm keeping this baby she has been good to me Tell me how to intregate it into the computer you build for me.
    I don't know enough about the new Intel Mac's to make a strong decision that is why I need some help and yes I use Adobe products I have a digital camera, Scanner, Epson Printer, 2x's External HD's 1-FW and 1USB and I have a Pioneer DVR-108 in my G4 so like I said she is my baby but she needs a a new guy so is it
    a LapTop or a Desktop or a iMac
    Help me decide please as I'm going to use this Mac to it's fullest with iLife and Leopard when it comes out and did I mention I used to be a Graphic Artist ..........Thanks, Michael

    First you have to define how much power you need. between an imac and a macbook pro, i would pick a macbook pro, because you get the same performance, but its portable, so you can use it anywhere in your house, or on the bed, etc. How much more speed do you need than what your G4 currently gives you? The new Macbook pros perform about as fast as a dual core 2.3 GHz G5, so if you think that is fast enough, then definitely go for one of those. the only deatil is that you owuld have to constantly plug in your peripherals, but it may not be as bad a problem with a USB and firewire hub, so it would only be 2 cables. on top of that, if you dont need super fast access to your hard drives, you can put a wireless card in your G4 (make sure its 54 MB) or plug it into an airport exp[ress, and share the hard drives that way. you could even leave everything plugged into your G4 and control it using remote desktop. that way you wouldnt have to plug peripherals in and out.
    You should tell me your budget and I can make a better recommendation, but right off the bat, if you dont think you need a 256 MB graphics card and the 128 MB one would do, i would get the cheapest macbook pro, and upgrade to 2GB RAM total, and the 160 GB hard drive. this is I think the best value if you dont need the upgraded graphics card. If you would like the bigger screen, then go for the 17" also with 2 GB of ram and the 160 GB hard drive.
    Unless you really need the power of a mac pro, just get one of the macbook pros, and you will not regret it. I'm using a 2.0 GHz core duo, and I love it. its fast enough for everything I need. I only bought my Mac pro to replace my powermac 2.0 dual processor and my windows computer because I ot used to fast hard drive access through RAID, and I couldnt do this with the macbook pro.
    If you have any questions, feel free to ask
    One more thing, last year I got very sick, and couldnt really move around too much, and my powerbook became my best friend. I practically stopped using my powermac, so you may want to consider that also. I simply layed in bed with my laptop and remote desktopped to my desktop when I needed something form it.
    Aldo

  • My I tunes match is working on my I phone 5, I pad and Apple tv  but no in my mac book pro

    Dont know what is happening.
    I have my I tunes match working in my iphone, in my I pad, Apple tv but not in my mac book pro.
    I changed from a PC where my i tunes library was, and when I bougth and changed to my macbook pro, I activated to I tunes match and it was working, now, it appears that I have the ammount of songs, but they dont appear in the itunes library. I think that the problem started since i Upload to Maverick X
    Please help

    Hi,
    Is itunes match turned on? If so, try holding shift key whilst turning off match.
    Now turn match back on, signing in with the apple ID that you used to set up match. You will be asked to add this computer, do so. Once process complete you should see all the music you have in cloud.
    Jim

  • Export Apple mail to Outlook 2011 for Mac

    Hi everyone,
    I don't like the serie Mail/iCal/Carnet d'adresses from Apple, reason why I bought Outlook 2011 for Mac.
    I succeed transferring all my contacts to Outlook.
    I try now to transfer all my mails with their categories to Outlook too but I don't succeed.  I read some discussions on this forum but they are obsolete as they were with snowLeopard and Outlook 2011.  Would someone have good news for me and find a way to transfer all the mails with their categories from Apple Mail to Outlook 2011 for Mac ?
    It would be nice and to receive a positive answer.
    Thank you for your help
    Renée

    INFORMATION on Emailchemy from another Forum
    I’ve found a way in which you can import Apple Mail into Outlook 2011 on Mac OS X Lion.
    The software I’m running is Mac OS X 10.7.2 on a 2011 MacBook Pro.
    You need to purchase an app called Emailchemy. It’s 29.99 for an individual license, and 49.99 for a family license. There are enterprise versions available as well.
    Once you run the app, you need to do the following:
    1. Export all mailboxes from Apple Mail to your desktop (or any other suitable location on your computer). You do this by selecting the mailbox, and then clicking on “Mailbox”, and then “Export Mailbox”. Save the destination, and the file is saved automatically.
    2. Then you open Emailchemy and do the following:
    - click on “toolbox” in the bottom left hand corner
    - click on the second box on the top left hand called “advanced email conversion”
    - click on “add file”
    - select the folder (s) you just exported from Apple Mail (e.g. Inbox.mbox)
    Now here comes the trick
    - select format “apple mail 1.0 in the format option at the bottom
    - then 3 sub-folders will appear “info-p.list”, “mbox” and “table of contents”
    Select “mbox”
    - click on “convert” and choose a save file name. Choose the format “MBOX file (standard mbox)”
    - click on save
    And you then have a folder created which Outlook 2011 recognizes and can import.
    I just imported all my Apple Mail into Outlook 2011 – it works really well too – the formatting, attachments, etc are all there!
    Hope this helps.

  • Apple TV mirroring issues even with Mac mini,airport extreme bought at the end of last year,and an iPad 2

    Apple TV mirroring issues even with Mac mini,airport extreme bought at the end of last year,and an iPad 2

    I have the same issue with ATV3 and iPhone 4S. Everything works properly, no buffering issues when watching netflix, vimeo, youtube BUT when I try mirroring even a small 15sec iPhone movie it stutters and buffers and results to a choppy playback..same with larger mp4 files such as 1-1.5GB, buffers forever and never plays, I just re-encoded the same movie to 700MB and plays perfectly..
    Why Apple, why?..so close..I can accept the bigger movie files issue, but not being able to playback properly an iPhone movie is funny..I recorded a movie with lower bitrate through Filmic Pro (Economy mode, up to 16Mbps)
    and plays properly.
    Is there an upcoming software update going to solve the problem or is it hardware related and therefore not fixable.
    Please don't reply with a network related answer, by 2012 we know how to set up our networks and everything else runs flawlessly.
    I'll apreciate a fast answer, we love Apple, but if it can't play an iphone movie (or a high quality movie from iTunes) it's just not up to my standards.
    Thanks again.
    JP

  • Will a external Apple iSight work with the latest Mac Mini?

    with a firewire 400-800 if it will what software do i need to take pictures and videos.
    Many Thanks

    Will a external apple isight work with the latest mac mini.
    Yes (if the external iSight works.)
    External iSights are great webcams, but they are getting old (as consumer electronics go) and some have had pretty rough treatment. You can test yours using the suggestions from this page:
      http://www.ralphjohns.co.uk/EZJim/EZJimpage4.html
    I suggest you disconnect other Firewire devices until you get your external iSight working with your mini.
    If you do not already have an external iSight and are considering buying one now,
    a new webcam (with warranty) may be a better choice.
    Many available alternatives are listed here: http://www.mac-compatible-web-cam.com/
    THEMACMINIMAN wrote:
    with a firewire 400-800 ...
    Use one of the following ways to connect your FW400 external iSight to a FW800 Mac port:
    • To use the FW400 6pin-6pin cable that comes with iSight, you can use a 6pin-9pin adapter
      like one of these:
      http://tinyurl.com/ydsbb6m  (I use this one.)
      http://tinyurl.com/cgll7o
      http://www.sonnettech.com/product/fw_adapter.html
    • This Firewire 400-800 cable can work:
      http://store.apple.com/us/product/TP320LL/A (I use this one.)
    • Some report that this low-priced alternative cable works:
      http://www.newegg.com/Product/Product.aspx?Item=N82E16812189097
    I suggest you disconnect other Firewire devices until you get external iSight working with your mini. Once iSight works when it is the only FW connected device, you can try connecting other Firewire devices to determine whehter you can use any of them without conflict.
    ... if it will what software do i need to take pictures and videos.
    With your 10.6.3 mini, you can use QuickTime X, iChat, Photo Booth, iMovie, and some of the other apps that are installed with OS X. Your Mac's Help for each of these apps can tell you how to use them with iSight (or other connected cameras.)
    Some more apps you can use are shown in this list:
      http://www.ralphjohns.co.uk/EZJim/EZJimpage7.html
    The web links for each app gives details on what functions is offers with your webcam.
    Many Thanks
    You're welcome.
    EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz w/Mac OS X (10.6.3)  MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.3)
    LED Cinema Display  G4 PowerBook  1.67GHz (10.4.11)  iBookSE 366MHz (10.3.9)  External iSight

  • I purchased Microsoft Office for Mac through the Apple website.. I have downloaded all from the disk into my Mac, no problem with all the other Word etc, but Outlook is asking for the key number: I have put it in but its obviously not the right one...????

    I purchased Microsoft Office for Mac through the Apple website.. I have downloaded all from the disk into my Mac, no problem with all the other Word etc, but Outlook is asking for the key number: I have put it in but its obviously not the right one...???? In the box with the disk came the product key, have put it in and it doesnt work. Please help..x

    unfortunately - you can not.  you can't even buy outlook by itself at microsoft's own website.
    does it have to be outlook?  maybe you can get away with using something else that's outlook compatible.
    how about trying Thunderbird for Mac OS?
    or maybe you can call apple and let them know you purchase the wrong version - they might give you a break and just pay the difference for the home and business version.
    good luck

  • Can i play blu-ray dvds on my apple usb superdrive using the macgo mac blu-ray player

    can i play bluray dvds on my apple usb superdrive using the macgo mac bluray player

    Yes.
    Read here:
    http://www.macworld.com/article/2042431/watch-and-rip-blu-ray-movies-on-your-mac .html

  • Will the apple cd superdrive work on a mac mini with OS 10.6.8?

    Will the apple cd superdrive work on a mac mini with OS 10.6.8?

    Yes, Early 2009 and later.
    http://support.apple.com/kb/HT2801
    Message was edited by: nbar

Maybe you are looking for