I`d like to know how can i insert documents, xls/doc/pdf into iCloud and have them in my iPhone and my iPad. I just found one way, through ibooks, but i think it isn't a practical option.

I`d like to know how can i insert documents, xls/doc/pdf into iCloud and have them in my iPhone and my iPad. I just found one way, through ibooks, but i think it isn't a practical option.

Just use Drop Box instead.

Similar Messages

  • How can we change an old apple id in icloud that has been set in iphone and we don't have password of it?

    hi
    a friend of mine has bought a second hand iphone 5s . in icloud setting an old apple id has been set.he'd like to change it with his own , he isn't able to change it because the password of old apple id is required , and every 10 sec a message is appeared that needs a password ( find my iphone ). he has set his own apple id in itunes  store , but in i cloud he couldn't find a person that he has bought it from .how can we fix this problem .
    i'm looking forward to hearing from you .
    thank you
    sincerely

    That is "activation lock". You won't be able to use the iPhone unless this is cleared by the original owner.

  • I'd like to know how can i connect my old iMac tiger with new one iMac lion. I wanna use the old one for external disk to collect files from there to new one.

    I'd like to know how can i connect my old iMac tiger with new one iMac lion. I wanna use the old one for external disk to collect files from there to new one.

    Hi mshields1162,
    Great question, and welcome to Apple Support Communities.
    First, you may want to choose to have the sidebar displayed for familiarity:
    iTunes 11: Frequently used features
    http://support.apple.com/kb/HT5649
    Afterwards, your device should be displayed if connected:
    We'll want to click on it, and choose the Music tab at the top. Let's make sure "Sync Music" is checked:
    Afterwards, you'll have the option to sync either the entire music library (for your first iPod), or "Selected playlists, artists, albums, and genres" (for the secondary device). Upon selecting this option, four larger option boxes will appear allowing you to pick and choose what content will be synced. For audiobooks, you may need to do the above in the "Books" section. For a visual instruction on how to do this, see the following:
    iTunes 10: Sync to your iPod
    http://support.apple.com/kb/VI72
    Thanks,
    Matt M.

  • Hello...I had to format my machine. Thereforeso I would like to know how can I re-download OS Lion without paying again. Thanks a lot.

    Hi Mates!
    I had to format my machine.
    Thereforeso, I would like to know how can I re-download OS Lion without paying for it again.
    Thanks a lot.

    ludzf wrote:
    I had to format my machine.
    Thereforeso, I would like to know how can I re-download OS Lion without paying for it again.
    If you used your 10.6 install disk to wipe the drive completely:
    Then your going to have to install 10.6, Software Update to 10.6.8, go to the AppStore and log in with your AppleID and hold on option key while clicking on Purchases to redownload the Lion installer like you did before.
    When you install OS X Lion it creates a hidden partition on the drive that you can hold command and r (option) keys down while booting to load it, it's called Recovery HD.
    It has Disk Utility which can erase the Macintosh HD and also install Lion again from Apple's servers with your AppleID and password.
    Your AppleID ties you to the install OS X, because it was used to purchase it earlier from AppStore.

  • I would like to know how can I set songs in iTunes to play at different times automatically during the day. i.e. one song at 10am the other at 10:30am etc..

    I would like to know how can I set songs in iTunes to play at different times automatically during the day. i.e. one song at 10am the other at 10:30am etc..

  • I lost my Iphone 3GS. My brother has given me his Iphone 4 now. We both use the same notebook to update and sync our phones. I would like to know how can i reconnect back to my account using the Iphone which was previous used by my brother.

    I lost my Iphone 3GS. My brother has given me his Iphone 4 now. We both use the same notebook to update and sync our phones. I would like to know how can i reconnect back to my account using the Iphone which was previous used by my brother.

    If you are saying that you both have iCloud accounts and use the same icloud ID, then yes, the contacts will be deleted.  The idea is that all devices using the same icloud ID are kept in sync.  You need to use different IDs.  You can keep the same iTunes ID so you can share the songs and apps.  But use different icloud IDs.

  • I have a Samsung S5 and I got and email with a ringtone on it I would like to know how can I put that ringtone on my phone

    I have a Samsung S5 and I got an email with a ringtone on it so I would like to know how can I put that ringtone on my phone from my email?

    Did the ringtone come as an attachment? If so just save the file. If you downloaded it when you opened the email it should be in your downloads.

  • I would like to know how can I delete emails from my email block have more than 8000? Thank you.

    I would like to know how can I delete emails from my email block have more than 8000? Thank you.

    I want to say, delete the 8000 not one by one, or 50 in 50... Minimum of 200 by
    200

  • I would like to know how can I have the templates from premiere as customer of adobe creative cloud

    I would like to know how can I have the templates from premiere.
    I am Adobe Creative Cloud member.
    Thanks
    Dmitre Raposo

    Not sure what you are referring to. If you have any files MIA, simply re-download and reinstall the app via AAM.
    Mylenium

  • I would like to know how can i compare a switch case 1 and case 2 in C# is it possible to do that? obs i am a begginer :)

    i would like to know how can i compare a switch case 1 and case 2 in C# is it possible to do that? obs i am a begginer :) I tried to do it with search and sort but it did not go well

    let me give you an example if you add a word case 1( lagg ord) how can i compare that word with case 2 words ( in case 2  already exist 5 words)
    here is the my program 
    using System;
    namespace ConsoleApplication1
        class Program
            static void Main(string[] args)
                //Meny
                Console.WriteLine("\n HÄNGA GUBBE\n");
                Console.WriteLine(" 1) Lägg till ord");
                Console.WriteLine(" 2) Lista alla ord");
                Console.WriteLine(" 3) Spela");
                Console.WriteLine(" 4) Avsluta");
                bool utgång = false;
                do
                    int Valet;
                    Console.Write("\n\tVälj 1-4: \n ");
                    try
                        Valet = int.Parse(Console.ReadLine());
                    catch (Exception)
                        Console.WriteLine("Du skriver fel character!\n" +
                            "\nSkriv bara mellan 1 och 4");
                        continue;
                    switch (Valet)
                        case 1:
                            Console.WriteLine("\n lägg ett till ord! ");
                          var input = Console.ReadLine();
                            break;
                        case 2:
                            Console.WriteLine("\n Lista med alla ord :\n");
                            string[] array = { " Lev", " Skratta", " Gledje", " Gråt", " Njut" };
                            Array.Sort<string>(array);
                            foreach (var c in array)
                                Console.WriteLine(c);
                            Console.WriteLine("\n");
                            break;
                        case 3:
                            string guesses, bokstäver;
                            Console.Write("\n Hur många fel får man ha? ");
                            guesses = (Console.ReadLine());
                            Console.WriteLine(" Utmärkt, då spelar vi!\n");
                            Console.WriteLine(" Felgisningar :" + "0/" + guesses);
                            Console.Write(" Gissade bokstäver ");
                            bokstäver = (Console.ReadLine());
                            Console.WriteLine("Aktuellt ord");
                            Console.Write("Gissa bokstav : " + bokstäver + " \n");
                            break;
                        case 4:
                            Console.WriteLine("\n  HEJ DÅ! \n");
                            Console.Beep();
                            utgång = true;
                            break;
                        //avbryter while loopen, avslutar spelet
                } while (!utgång);

  • Hi, I would like to know how can I recover a document from pages that I didn't save anytime and instead of clicking the button save I clicked the delete button at the end. Is there any way to recover it?

    Hi, I would like to know how can I recover a document from pages that I didn't save anytime and instead of saving the doc I clicked the delete button. Is there any way to recover it?

    Regardless of application, the first step that I take is to save and name the current document — even if it has no content yet. With Pages, this good habit enables autosave. As you add content, your document revision history is restorable via the File Revert To menu. The delete key has the same document foreboding as only teaching a pet raven to speak "Nevermore."

  • I am trying to update my account in iTunes but it asked me to spend all the money that I do have on my account before !! for that reason I would like to know How can I spend 0.16 $ in iTunes ?

    I am trying to update my account in iTunes but it asked me to spend all the money that I do have on my account before !! for that reason I would like to know How can I spend 0.16 $ in iTunes ?

    jonathanfrommcallen wrote:
    I am trying to update my account in iTunes but it asked me to spend all the money that I do have on my account before !! for that reason I would like to know How can I spend 0.16 $ in iTunes ?
    How are you trying tp "update" your account?
    Changing countries?

  • I'd like to know how can u put letters on caps without holding all times the shift key?

    I'd like to know how can u put letters on caps without holding all times the shift key?

    Settings>General>Keyboard>Enable Caps Lock>On. Then just tap the shift key quickly.

  • Hello again, I'm still learning about my imac so here I go with latest question- I've installed word 2011 and would like to know how to email the document I have just written straight to a recipient but can't seem to find how to do this. Please advise

    Hello again, I'm still learning about my imac so here I go with latest question- I've installed word 2011 and would like to know how to email the document I have just written straight to a recipient but can't seem to find how to do this. Please advise in simple terms
    Also how do I save to a file.
    Thank you clever world!!

    To save you file click the disc icon in the tool bar or file save as:
    To email the Word document to someone compose a new message and click the paper clip to attach the Document.

  • TS4124 Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Hi, do you know how can I upload inelegible songs from itunes to Icloud. They are songs added from original CDs. Another question would be how can I transfer all the music I have in my Ipod Classic to my Itunes or ICloud as I want to back it up.

    Depends on why it's ineligible.  If it's under 96 Kpbs, try right-clicking on the file and choosing Create AAC Version.  (If you don't see this option, go to iTunes>Preferences, click "Import Settings..." then choose "Import Using: AAC Encoder" and "Setting: iTunes Plus".)  Then rescan your library to see if this version will add to iTunes Match.  Or, after changing your import setting, just re-import the song to your iTunes library.
    If the song is over 200 MB you would have to reduce it's size to make it eligible.

Maybe you are looking for