I need help please!  Can pictures get on your icloud other ways?  Can something be put on there by someone other than yourself, liked public wifi or hacked?  Got a big problem h some **** on an iPod and I am to knowledgeble about the ipod...thanks

.         Can pictures get on your icloud other ways?  Can something be put on there by someone other than yourself, liked public wifi or hacked?  Got a big problem with some **** on an iPod and I am to knowledgeble about the ipod...thanks

You're not confusing this with a shared Photo Stream...?
Because the short answer is no, photos don't appear unless they were put there by someone with your Apple ID credentials. To rule out that possibility, change your Apple ID password by carefully following all these instructions:
iCloud: Change your iCloud account password
If you decide to change your password, and you also want to change your Apple ID, I recommend you do not concurrently change your Apple ID until sufficient time has passed and you are confident the password change has been effected on all your iOS devices. 24 hours ought to be more than enough.
It is not necessary to change your Apple ID unless it is an email address you no longer wish to use.

Similar Messages

  • Hi, I got a big problem. I restored my mac and after I erased everything and started to restall the system, it showed I need to give the apple ID that was purchased the lion. The problem is that I lost my CD, and I don't have an ID with lion purchased

    Hi, I got a big problem. I restored my macbook pro and after I erased everything and started to restall the system, it showed I need to give the apple ID that was purchased the lion. The problem is that I lost my installing CD, and I don't have an ID with lion purchased, so what should I do? Do you sell the system software?

    This is a user forum; we're not  Apple. 
    Please contact the Apple Support folks directly for issues related to hardware and software purchases.
    The particular model of MacBook Pro is a key detail here, as the Mac model will determine the oldest version it can boot, as well as whether it'll boot more current software.
    AFAIK there is and was no Lion installer DVD available.  It was a download.  AFAIK, the last DVDs commonly available were for Snow Leopard 10.6.  Snow Leopard DVDs are still available in the Apple online store in various countries, if your MacBook Pro is old enough to be able to boot that version.
    If your MacBook Pro purchase with Lion wasn't registered with Apple, then you'll have to discuss this directly with the Apple Support folks, or repurchase Lion from the Mac App Store (which will usually involve a call to Apple for a redemption code as it's old software), or you'll "purchase" (it's free) Mavericks OS X 10.9 and wipe and install that assuming your MacBook Pro supports Mavericks.  If you didn't purchase the MacBook Pro from Apple (and it was shipped with an older release), then you'll end up acquiring a redemption code from Apple for Lion, or installing Mavericks.
    For completeness and given you're probably already aware of this, the usual approach for restoration with recent OS X versions is via the recovery boot (more details).  If the disk is wiped and you can't get Lion, then you'll probably end up reinstalling with Target Disk Mode using another Mac with a compatible FireWire or Thunderbolt port and a cable.  Or visit the local Apple Store.
    sputniki: Once OS X 10.7 or 10.9 has been reinstalled, yes, getting Time Machine configured and going is undoubtedly on the agenda.  But had there been a viable backup here, I expect jianghua would have used it.

  • Need help please!im getting confused!

    Hi,im trying to create a simple prog that would give me lollipops (10p) and doughnuts(20p) enough to spend 1 pound (100p) in random order using math.random and methods...Im getting very confused with
    the combination of these and my code according to the book seems fine,but im getting an error of <identifier> expected at the "private double myMoney" line and ')' expected at the same line...
    Here's the code:
    import java.awt.*;
    import java.applet.Applet;
    public class Lollipop2 extends Applet {
              private double myMoney (MoneyGiven){
              int MoneyGiven = 100;
              int MoneyPaid = (int)(Math.random() * 2) + 1;
         return MoneyPaid; }
    public void paint(Graphics g) {
         if (MoneyPaid = 1 || MoneyGiven = 10 && MoneyGiven >0){
    drawLollipop(g, 10, 10, 30, 60);
    g.drawString("10p", xPos, yPos);
         MoneyGiven -= 10;}
    if (MoneyPaid = 2 && MoneyGiven >0){
    drawRing(g, Color.magenta,40,40,30,12);
    g.drawString("20p", topX, topY);
         MoneyGiven -= 20;}
    private void drawLollipop(Graphics gIn, int xPos, int yPos, int width, int height){
    gIn.drawRect(xPos, yPos, width, height);
    gIn.drawRect(xPos+width/2, yPos+height, 4,15);
    private void drawRing(Graphics gIn, Color ringColor, int topX, int topY, int diameter, int thickness){
    gIn.setColor(ringColor);
    gIn.fillOval(topX,topY, diameter, diameter);
    gIn.setColor(Color.white);
    gIn.fillOval(topX+thickness,topY+thickness, diameter-2*thickness, diameter-2*thickness);
    gIn.setColor(Color.black);
    Can someone please help me???

    Im getting very confused with
    the combination of these and my code according to the
    book seems fine,Nope, your code is not according to the book, starting by the name conventions, your variables should start with lowercase and each word inside the var name should start with uper case and your brackets use is disturbing, the closing brackets should be on its own line.
    Besides that:
    import java.awt.*;
    import java.applet.Applet;
    public class Lollipop2 extends Applet {
    private double myMoney (/* here you should havae the type of money given, like: int, long, float, double, BigDecimal, etc. */MoneyGiven){
    int MoneyGiven = 100; /* here you are reusing the parameter name as a local variable. */
    int MoneyPaid = (int)(Math.random() * 2) + 1;
    return MoneyPaid; } /* Your method signature is double but you return int, it may give you a warning. */
    public void paint(Graphics g) {
      /* Bellow in the condition:
       * 1 - there is no MoneyPaid or MoneyGiven vars anywhere to code to use.
       * 2 - You are using attribution(=) to the variable instead of comparation (==)
    if (MoneyPaid = 1 || MoneyGiven = 10 && MoneyGiven
    0){drawLollipop(g, 10, 10, 30, 60);
    g.drawString("10p", xPos, yPos);
    MoneyGiven -= 10;}
    if (MoneyPaid = 2 && MoneyGiven >0){
    drawRing(g, Color.magenta,40,40,30,12);
    g.drawString("20p", topX, topY);
    MoneyGiven -= 20;}
    private void drawLollipop(Graphics gIn, int xPos, int
    yPos, int width, int height){
    gIn.drawRect(xPos, yPos, width, height);
    gIn.drawRect(xPos+width/2, yPos+height, 4,15);
    private void drawRing(Graphics gIn, Color ringColor,
    int topX, int topY, int diameter, int thickness){
    gIn.setColor(ringColor);
    gIn.fillOval(topX,topY, diameter, diameter);
    gIn.setColor(Color.white);
    gIn.fillOval(topX+thickness,topY+thickness,
    diameter-2*thickness, diameter-2*thickness);
    gIn.setColor(Color.black);

  • After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.

    After my iphone4S update to 7.0.6, it have a problem that keep searching network then no service show on display. Can't call. I have try check sim card, reset network settings, and restore my iphone. Still not working at all. Need help please.Urgent.TQ

    Izit software or hardware? Confuse:(
    Only can use wifi now.
    Any way thanks guys for ur suggestion:) amishcake and simes

  • Bought a new macbook and want to manually manage music onto my iphone 4s but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Bought a new macbook and want to manually manage music onto my iphone 4s (as it is already full of music from old windows laptop) but when i click 'manually manage' and then 'apply' i get the message saying it will erase everything already on there. Need help please!

    Before you sync your iPhone make sure that all the music that was synced to your phonereviously has been copied to your iTunes on the new MacBook Pro. Then when you connect your phone you will be able to either sync all music or select only those playlists that you want on the phone.

  • HT201413 I need help please!!!!! My iPhone 4 s won't charge!!!!! I get error message 21. How can I get around this.

    I need help please I keep getting error messega 21 when i try uploading my iPhone 4 s!!!!!!!!! omg some one please tell me if and how to fix this please. thank you!!!

    Hopefully this link will help you: http://support.apple.com/kb/HT2109

  • I just bought and installed mountain lion, and I can't get to sign in to hotmail.Can I get some help please. Thanks.

    I just bought and installed mountain lion, and I can't get to sign in to hotmail after several trials. I need help please. Thanks.

    so its in a forum, which I didn't stumble upon because it wasn't anywhere in the adobe troubleshooting steps for Windows 8 that automatically came up for me when I clicked that I couldn't see the test flash movie on their site. I guess if I spent another half a day googling I might have found it.
    BTW, unchecking Active X filtering in IE10, was NOT the fix. I had to go into the security tab, and change the custom active X setting I listed above. So this link you provided which mentions unchecking Active X filtering was not the fix that worked in my scenario.

  • I have an itouch, most songs i got off my cd's. i have a new laptop and want to put songs from itouch to laptop.I can only get the songs that i purchased onto the laptop? need help with how to get the rest from itouch to laptop please??

    i have an itouch, most songs i got off my cd's. i have a new laptop and want to put songs from itouch to laptop.I can only get the songs that i purchased onto the laptop? need help with how to get the rest of the songs (from my cd's) from itouch to laptop please??

    See this previous discussion:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • My iPhone 6 can't find my macbook pro on the airdrop list, although everything is in place, bluetooth, wi fi gets, need help please ?

    My iPhone 6 can't find my macbook pro on the airdrop list, although everything is in place, bluetooth, wi fi gets, need help please ?

    Dear Niel, thank you but my mac is (MacBook Pro (Retina, 15-inch, Early 2013).
    and i can send from it to my iPhone , but not vice versa

  • HT204380 I can't access my FaceTime and messages through my iPod touch, I need help please!!!

    I can't access my FaceTime and messages through my iPod touch, I need help please!!!

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    For non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    You posted in the iPad forum instead of the iPod forum. To get answers to your question, next time post in the proper forum. See https://discussions.apple.com/index.jspa  I'll request that Apple relocate your post.
     Cheers, Tom

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • HT1222 I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I am trying like **** to download itunes 10.6.3 (64 bit - Windows 7) and I keep getting "the installer was interrupted before the requested operations for iTunes could be completed.  Your systems has not been modified."  I NEED HELP, PLEASE!

    I got it figured out myself... yaaaaay for me!

  • Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. Then I playing game I can se

    Hi i need help please i been playing clash of clans over 13 months. And today o realise what someone using my game Centra. Someone playing on my game Clash of Clans. I been change my Apple ID password, email, but doesn't work. When I playing game I can see what someone else trying connecting to my game And I don't know what to do.So if you can help me please? I don't wanna lose my game. 

    Hello Vaidas Vaidas,
    It sounds like you are noticing someone else is accessing your Clash of Clans data by playing the game and you have tried to reset your Apple ID password. If you are following the steps outlined in this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    What is preventing you from changing your password? Any error messages or prompts?
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • I dont know how i got my photos to my ipod touch from my pc and now i wanna delete them but couldn't. so need help. please let me know.

    i dont know how i got my photos to my ipod touch from my pc and now i wanna delete them but couldn't. so need help. please let me know.

    To turn off auto sync - launch iTunes and go to Edit>Preferences>Devices - check the box at the bottom that says - Prevent iPod, iPhones and iPads from syncing automatically. Click OK and then quit iTunes.
    Connect your iDevice to your PC.
    Launch iTunes,
    Click on the device name on the left side of the iTunes Window.
    Click on the Photos Tab in the iTunes window on the right.
    Untick all of the photos or albums that you want to remove.
    Click on Apply in the lower right corner of iTunes
    If you untick or uncheck the Sync Photos heading and then click Apply it will remove all of the photos from the device when it syncs. In this screenshot - I have only certain albums and events selected to sync.

  • Please, I need help. I´ve just downloaded your adobe creative cloud and now I CAN´T SEE THE DESKK ON MY PC!!!!!

    Please, I need help. I´ve just downloaded your adobe creative cloud and now I CAN´T SEE THE DESKK ON MY PC!!!!!

    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

Maybe you are looking for

  • Safari Crashes when trying to open.

    I have tried reinstalling safari, uninstalling flash and reinstalling. And Repairing Disk permissions....any help would be great...this is my first Mac. Date/Time: 2010-12-05 18:40:22.951 -0600 OS Version: 10.4.11 (Build 8S165) Report Version: 4 Comm

  • Kernel 3.0.4-1 with sky2 ethernet driver - VLAN problem

    Hello, after installing kernel 3.0.x (any) VLANs stopped working on sky2 driver. Althoug I can add VLAN to interface, i can't ping anything. Tcpdump does not register any traffic on tagged interface.Of course normal (untagged) traffic works without a

  • How to add the BPM column in iTunes 12.01?

    This used to be easily done under View Options but is gone now.  Is it somewhere else now or has this feature been removed?  THX!

  • Hooking up PS3 to X-fi El

    Alright, So I just finished intalling the X-fi elite and set up the receiver. The instructions in the box were not much help for what im trying to do, nor the FAQs. I am really hoping someone out there can help me with this problem: I am running a Kl

  • How many songs can i jam on this thing

    I have a 10gig ipod so far i have about 6gigs used and only about 260 songs on it. I thought it would take something like 10,000 songs. do they all have to be in mp3 format for that to happen? is there any way to have apple lossless format on the com