Pop up message on my iPad, help please.

Hello, recently I've gotten a message on my iPad saying "Your apple ID and phone number are now being used on a new iPod touch"
The message also said, - Please ignore this message if you have recently signed into my Macbook.
The only problem I have here is the fact that I don't have an iPod touch.. I'm not sure what's going on, but obviously for safety reasons I've changed my apple ID password. Can anyone tell me why I'm receiving this message? Thank you in advance.

I turned on my iPod Touch 5th generation last night for the first time in about one month. I rarely use it these days. As soon as the device was up and running, I got the message that someone had signed into iCloud and my Apple ID on a new iPod Touch. I also get the message if I change any of the settings in FaceTime or Messages on any of my devices.
Why you got the message if you do not have an iPod Touch is beyond me, unless you have someone else using your Apple ID that does have an iPod Touch. That message is associated with your Apple ID and any device that your ID use being used on.

Similar Messages

  • I can't open ibooks. There was a screen pop up about java se. Help please.

    I can't open ibooks. There was a screen pop up about java se. Help please.

    Hi there ajsupprt,
    It sounds like you may need to update the version of Java installed on your computer. Take a look at the article below for more information.
    Java updates available for OS X on August 28, 2013
    http://support.apple.com/kb/ht5648
    -Griff W.

  • I can get text messages and get this at the top of page 'Messages (-1)' can anyone help please?

    I can not get or see any text messages and get this at the top of page 'Messages (-1)' can anyone help please?

    For details of how to restore it, see https://support.mozilla.com/kb/menu+bar+is+missing

  • Hi, I have an iPad 2, my email button was working fine until about an hour ago and by pushing the mail button my hotmail messages came up automatically,now when I try I just get the blank page with no messages on? Any help please ?

    Hi,
    I have an I pad2 ,mail button was working fine until a couple of hours ago,when I pressed the button my hotmail messages came up,now when I hit the button I just get a blank template ? Help please !

    No,didn't have any of those but have since solved the problem by following the advice in user guide to switch off and switch back on again,thanks for your efforts anyway.

  • I have a series problem in the safari application it was quit unexpectedly and i can not open it even after i click reopen in the pop uo message that apears to me please help me to make it.

    how can i open an application that was quit unexpectedly?

    If you have another browser installed:
    1. Download and use free AdwareMedic to remove the adware
        http://www.adwaremedic.com/index.php
        Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
        Once done, quit AdwareMedic.
    2. Safari > Preferences > Extensions
         Turn those off and relaunch Safari to test .
         Turn those on one by one and test.
                   or
        Remove the adware  manually  by following the “HowTo” from Apple.
        http://support.apple.com/en-us/HT203987
      If you don’t have another browser installed:
    Startup into SafeMode, log into your account, open Safari
    and download  AdwareMedic or the removal instructions from Apple.
    * How to start up into Safe Mode?
    Shut down the computer.
    Press the power button. Immediately after you hear the startup sound, press and hold the Shift key.
    The Shift key should be pressed as soon as possible after startup,but not before the startup sound.
    Release the Shift key when you see the Apple logo on the screen. Startup will take longer than usual.
    Launch Safari. Proceed with the removal of Adware.
    1. Download and use free AdwareMedic to remove the adware
        http://www.adwaremedic.com/index.php
        Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
        Once done, quit AdwareMedic.
    2. Safari > Preferences > Extensions
         Turn those off and relaunch Safari to test .
         Turn those on one by one and test.
                   or
        Remove the adware  manually  by following the “HowTo” from Apple.
        http://support.apple.com/en-us/HT203987
    Once done, click  in the menu bar and choose “Restart”.
    * Source:  http://support.apple.com/kb/PH18760

  • Cannot restore my iPad, help please?

    So my iPad was locked after repeated wrong password attempts and I had to restore my iPad. I had never synced it to my laptop before. So, I downloaded iTunes on my laptop and followed the steps to restore my iPad.
    It said I need a software update for my iPad before I can restore so I clicked agreed. The update needs FOUR hours. 3 hours remaining and my iPad suddenly disconnects and the same message pops up again: "iTunes cannot connect to the iPad because it locked...you must enter passcode.."!
    So okay, I go through the whole process again, put my iPad in restore, says I need to update software before I can restore, still says 4 hours again.
    Then the message pops up again!! And I lose my progress on the software update for the third time. I'm so frustrated!! Please help!!

    If you're unable to do the Restore, go into Recovery Mode per the instructions here.

  • TreeMap class and message not understood issues - help please

    Can anyone help with this one please?
    The code is the start of a Map interface/TreeMap class to hold names as keys and addresses as values (both Strings).
    I think the instance variable and the constructor are correct, but the addAddress method throws an error
    Semantic error: Message addAddress( java.lang.String, java.lang.String ) not understood by class'java.util.TreeMap'.
    I can only guess that I've overlooked something quite simple? The line at the end of the code should read
    "Replaced "old address" with "new address" for "new name" and this should only display if the key already exists in the Map,
    hence the if statement. The keys and values have been declared as Objects for future flexibility. Sorry if this is all blatantly obvious.
    Also if I wanted to test this code and create an instance of the Addressbook class, what should my code look like?
    Many thanks.
    {code}import java.util.*;
    public class Addressbook
    private static Map<Object, Object> addresses;
    public Addressbook()
    super();
    this.addresses = new TreeMap<Object, Object>();
    public static void addAddress(String name, String address)
    if (addresses.containsKey(name))
    addresses.put(name, address);
    System.out.println("Replacing " + addresses.remove(name) + " with "
    + addresses.get(name) + " for " + name);
    else
    addresses.put(name, address);
    {code}

    If you're only going to store Strings in the Map, make sure you are specifying them as generics so that all operations return Strings by default.
    You don't need to use contains if you are going to replace a map value. The old value will be returned when you place the new one in. Should be quicker, since you're not searching for the same key twice.
    Do not refer to a static variable with this. it become confusing and could result in bugs. That said use static sparingly.
    The AddressBook should probably be an instance and all the variables and methods should be instance variable and methods.
    I don't know your requirements however so I'll leave this as a suggestion.
    import java.util.*;
    public class AddressBook {
       private static Map<String, String> addresses = new TreeMap<String, String>();
       public static void addAddress(String name, String address) {
          String oldAddress = addresses.put(name, address);
          if(oldAddress != null) {
                System.out.printf("Replacing %s with %s for %s%n", oldAddress, address, name);
        public static void main(String[] args) {
            addAddress("me", "123");
            addAddress("me", "321");
    }Brushfire,

  • HT4623 my ipad is saying  (ipad not backed up) this ipad has not been backed up, backups happen when this ipadis plugged in, locked and connected to wi-fi, i cant clear it. I've backed up through itunes but I can't open the ipad, help please thank you

    Hi, I can't open my ipad. it is saying (ipad not backed up)  this ipad has not been backed up, backups happen whenwhen this ipad is plugged in , locked and connected to wi-fi Ok. Iv'e connected to itunes and backed up. but It won't let me clear the box or open the ipad. please help, thank you Lyn

    Try a reset:
    Hold the Sleep and Home button down until you see the Apple logo.

  • Iphone text message errors - can you help please?

    imessages that are sent are coming through from my email address and I cannot receive text messages sent directly to my number.  We are on a family plan.  When a text is being sent to one person, the other person is also getting the text.  Texting only seems to works if sent from an e-mail address and doesn't not send or receive to the phone #.
    Within the iMessage where is states:
    Apple ID : shows correct id
    You can be reached for messages at:
    Error  - with phone # grayed out
    Email - email address listed ok
    Please Help!

    Turned off iMessage and now it's working fine...strange

  • TS4002 When sending messages from iCloud on PC keeps telling me "message not sent" when message has been sent and keeps message as draft.  Help please.

    Everytime I send a message from iCloud on my desktop PC it states that message cannot be send at this time.  However when I look at sent folder, message has been sent.  Also message appears also under draft folder.  This only happens on dektop.  No issues on any of the iOS devices.  Please help.  Thanks

    Hello,
    any idea ?
    i give more detail:
    when i display the document, i don't find 'receptient list" tab,  i can't explain that
    Please help

  • Lost all my photos and txt messages during last update- HELP PLEASE

    During the last IPhone update my phone went into restore mode and when it recovered all my photos, videos, and txt messages were gone.  I went to restore through old ITunes restore points, but they were gone too- all I have is one from 2011 and the one with nothing on it, and I have synced my phone hundreds of times since 2011.  Is there anything I can do?  I have a Mac, could I use Time Machine to go back to an old date, and possibly the ITunes restore points will be there?  Any help will be much appreciated!!!

    Did you fail to backup the device prior to attempting the update?  If so, any content between the last backup and when the update apparently failed will be gone.
    If the device has been used as designed, contact would be synced to a supported application on the computer or a cloud service.  Simply sync them back.
    Pictures and videos taken with the device are designed to be copied to a computer regularly.  Only a fool would expect a device so easily lost/stolen or damaged to be sole storage of their "important" pictures.

  • Scheduling automatic message delivery in Mail - help please.

    Hi there.
    I just have a quick question - how do you set up Mail to automatically send someone a message at a specific time?
    For instance - email "[email protected]" at 8AM.
    Is it something that you need to create an AppleScript for - or is this something that Mail has built into it?
    Thanks for any help.

    To attach an image modify the script as follows:
    tell application "Mail"
    set theMessage to make new outgoing message with properties {sender:"[email protected]", visible:false, subject:"whatever you want to put here", content:" and whatever you want to put here
    tell theMessage
    make new to recipient at end of to recipients with properties {address:"[email protected]"}
    end tell
    tell content of theMessage
    make new attachment with properties {file name:"Main HD:pic.jpg" as alias} at after last paragraph
    end tell
    delay 3
    send theMessage
    end tell
    This will attach the file Main HD/pic.jpg
    Modify that as needed.

  • Premiere Pro CS5.5 has never started up... error message every time. Help please?

    Hi...
    I recently bought the Production Premium CS5.5 suite.
    Most of the programs work. (I haven't tried ALL of them. But the main ones -- Photoshop CS5.1 and After Effects -- work flawlessly.)
    But Premiere Pro CS5.5.0 doesn't open. Keeps giving me the good old error message: 'Adobe Premiere Pro CS5.5 has stopped working'. This is happening every time I try to open it. And it never gets past the opening screen. This is MIGHTY frustrating. And there seems to be no coherent advice on the matter anywhere on the Adobe Forums. Might just be that I haven't spotted it.
    I'm running a Fujitsu Lifebook T901, using Win 7 64bit Version 6.1.7601 Service Pack 1 Build 7601
    Processor Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz, 2701 Mhz, 2 Core(s), 4 Logical Processor(s)
    BIOS Version/Date FUJITSU // Phoenix Technologies Ltd. Version 1.04, 2011/02/17
    8 gigs of RAM.
    Please guys... what do I do?
    Operating System: Windows 7
    Printer model / driver version: Intel HD Graphics Family
    Video display card / driver version: 8.15.10.2246
    Has it ever worked? If so, what's changed? (provide comments in description field): No
    Same results with different file?: Not Applicable
    Same results with different computer?: Not Applicable
    Recent System Hardware or Software change?: No

    One problem appears to be that your T901 does not meet the minimum specification for Premiere CS5 - according to the Fujitsu specification sheet, its screen resolution is too low at 1280 x 800 - the minimum required is 1280 x 900.
    See here:
    http://globalsp.ts.fujitsu.com/dmsp/docs/ds-lifebook-t901.pdf
    and here:
    http://www.adobe.com/products/premiere/tech-specs.html

  • HT201364 Error message when installing 'Mavericks' - Help Please!

    I keep getting error message: 'The product distribution file could not be verified' when attempting to install Mavericks from the App store... any help appreciated!

    Try the suggestions here >  Bugs & Fixes: Solving Mac App Store download errors

  • Need Ipad help PLEASE

    Bought an ipad1 refurbished for my wifes christmas. First thing. it would not work on wifi, the option under settings was gray in color and turning on was not an option.
    Then a guy I know tried to reset the settings thinking this may help, and now its asking for a PUK code which I have not set????
    I tried to call applle support yesterday and waited for 56 minutes, finally just hung up
    HELP please

    You can download a complete iPad 2 User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
     Cheers, Tom

Maybe you are looking for

  • Not able to access the Sql in Client

    Hi I have installed sql 2005 and sap 2007b in client server. It was installed succesfully but i am not able to access in client machine. While installing sql whether we have to give " Network service ?? " instead of that i have give " Local system" s

  • Palm desktop for Zire 72 with Windows Vista, 32 bit

    I've tried the version 4.1.4e offered on the website, it is not working, though one page on the site seemed to omit that it would work for Vista.  What is strange is that it was working on my system just fine until a month ago.  I've uninstalled what

  • Schema error after upgrade from 4.6C to ECC 5.0

    Hi all, We have recently upgraded from 4.6C to ECC 5.0. We are having problem in payroll run. When I did a syntax check in schema, I got "UDPM" rule doesn't exist. I checked, this rule is present in 4.6C. This is the standard rule. If I am right, it

  • Published an iWeb 09 page, but it views blank

    I've published my family's website for a year now without any major issues (iWeb 08 and 09). I recently added a blog to the site and all pages, but one, open okay. The one page for some reason opens blank. I've deleted it, re-posted it, made little c

  • Runtime error R6025 Pure virtual function call....the program shuts down as soon as its opened

    iTunes shuts down as soon as it is opened.  Message says Runtime error R6025.  pure virtual function call.  What is this and can it be fixed???