How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

This should do the trick
Home Sharing Learn More
http://support.apple.com/kb/HT201976
Best of Luck

Similar Messages

  • I just ran migration assistant, and now I have two accounts on my new iMac...how do I merge my iPhoto libraries?

    I just ran migration assistant, and now I have two accounts on my new iMac...how do I merge my iPhoto libraries? Is there anyway to do it without using an external hard drive?

    Yes there is.
    1: Log out and into the account you later want to remove.
    2: Open your Pictures folder and look for the iPhoto Library.
    3: Right or control click on it, a menu appears and choose the option "Show Package Contents", it's really a folder.
    4: Find the folder called "Originals", select it and use the Finder menu to Duplicate it.
    5: Move the Copy of Originals to the Desktop. Close the window.
    6: From the Finder menu, select Go Computer.
    7: A window appears with your boot drive, double click it and on the Users folder inside.
    8: Select the OTHER users folder and open the folder called Public, inside is a folder called "DropBox"
    9: Drag the Copy of Originals to that DropBox folder, it will copy it.
    10. Log out and into the other account and access the DropBox folder, your files can then be imported into that iPhoto user Library from within the program itself.

  • TS3988 how do i merge two icloud accounts - on on my computer and ipad, a different icloud id on my iphone?

    How do I merge two iCloud accounts into one?  One account is on my mac and ipad, the other on my iphone.

    Welcome to the Apple community.
    You cannot merge accounts, you will need to choose one and use it.

  • My wife and I share a computer for our itunes accounts. How can we copy our music libraries to each others accounts without erasing the original library? We want to merge our songs.

    My wife and I share a computer for our itunes accounts. How can we copy our music libraries to each others accounts without erasing the original library? We want to merge our songs.

    If the music is on the same computer, import the songs to your iTunes library by dragging them into iTunes or choosing File > Add to Library (Mac) or File > Add File to Library or Add Folder to Library (Windows).  If the music is on different computers you can set up Home Sharing to copy the music from one library to the other (see http://support.apple.com/kb/HT3819 and http://support.apple.com/kb/HT4620).

  • HT204053 how can I merge two Apple-IDs?

    how can I merge two Apple-IDs?

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    Apple will not merge two Apple IDs, nor will Apple transfer content from one ID to another.
    http://support.apple.com/kb/HE37

  • How do I merge two valid, purchased iTunes accounts into one so all my music is in same account?

    I have two valid, purchasd iTunes accounts.  Older iPod has some great music, I just got a new iPad and set up second iTunes account, bought some more iTunes items for that account.  Just discovered iCloud.  Now I want to put all my music from both accounts onto the cloud so I can access it on all my apple devices.   Can't seem to add from one account to the other.  Can sign onto the new account wiht my old iPod, but it will not let me sync without erasing all the music on the device.  How can I merge these two accounts into one?
    PS  Makes you wonder how helpful support is when the usernames "Frustrated," "really frustrated," and "Help!!!!" are all taken...lol

    HeyStupid wrote:
    how do I merge two valid, purchased iTunes accounts into one so all my music is in same account?
    You cannot. iTunes pruchases remian tied to the account they were purchased with.
    I just got a new iPad and set up second iTunes account,
    Why?
    Remove your info from new account, update old account as needed and use that.

  • GUI - How do i merge two diffrent layout managers into one tab?

    Hello
    I want to create a cellphone, and when you click a button it will be displayed in a textfield
    the buttons are in a grid layout (4,3) and the textfield is in a border layout (NORTH)
    I have the layouts in two seperate tabs, but how do i merge two diffrent layouts in to one tab ?
    textfield:
    package guitelefon;
    import java.awt.*;
    import javax.swing.*;
    public class BorderPanel extends JPanel
       public BorderPanel()
          setLayout (new BorderLayout());
          setBackground (Color.green);
          JTextField output = new JTextField(5);
          add (output, BorderLayout.NORTH);
    }Buttons:
    package guitelefon;
    import java.awt.*;
    import javax.swing.*;
    public class GridPanel extends JPanel
        public GridPanel()
          setLayout (new GridLayout (4, 3));
          setBackground (Color.green);
          JButton b1 = new JButton ("1");
          JButton b2 = new JButton ("2");
          JButton b3 = new JButton ("3");
          JButton b4 = new JButton ("4");
          JButton b5 = new JButton ("5");
          JButton b6 = new JButton ("6");
          JButton b7 = new JButton ("7");
          JButton b8 = new JButton ("8");
          JButton b9 = new JButton ("9");
          JButton bs = new JButton ("*");
          JButton b0 = new JButton ("0");
          JButton bf = new JButton ("#");
          add (b1);
          add (b2);
          add (b3);
          add (b4);
          add (b5);
          add (b6);
          add (b7);
          add (b8);
          add (b9);
          add (bs);
          add (b0);
          add (bf);
    }driver:
    package guitelefon;
    //  LayoutDemo.java       Java Foundations
    //  Demonstrates the use of flow, border, grid, and box layouts.
    import javax.swing.*;
    public class LayoutDemo
         public static void main (String[] args)
          JFrame frame = new JFrame ("Cellhpone");
          frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
          JTabbedPane tp = new JTabbedPane();
          tp.addTab ("Grid", new GridPanel());
          tp.addTab ("Border", new BorderPanel());
          frame.getContentPane().add(tp);
          frame.pack();
          frame.setVisible(true);
    }

    a simple example with compilable code:
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import javax.swing.*;
    public class Main {
      public static void main(String[] args) {
        JFrame frame = new JFrame("Cellhpone");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        JPanel panel = new JPanel(new BorderLayout());
        panel.add(new FooPanel(), BorderLayout.CENTER);
        panel.add(new BarPanel(), BorderLayout.NORTH);
        frame.getContentPane().add(panel);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    class FooPanel extends JPanel {
      private static final String[][] BTN_STRINGS = {
        {"1", "2", "3"},
        {"4", "5", "6"},
        {"7", "8", "9"},
        {"*", "0", "#"}};
      public FooPanel() {
        setLayout(new GridLayout(BTN_STRINGS.length, BTN_STRINGS[0].length, 5, 5));
        for (int row = 0; row < BTN_STRINGS.length; row++) {
          for (int col = 0; col < BTN_STRINGS[row].length; col++) {
            JButton btn = new JButton(BTN_STRINGS[row][col]);
            add(btn);
    class BarPanel extends JPanel {
      private JTextField field = new JTextField();
      public BarPanel() {
        setLayout(new BorderLayout());
        add(field, BorderLayout.CENTER);
    }Edited by: Encephalopathic on Oct 29, 2009 7:56 AM

  • How to you merge two keychains?

    How do you merge two keychains?
    Everytime turn my macbook pro on, it asked for the password to my old keychain from before( i accidentally deleted created a new keychain when i upgraded to the latest maverick software).
    Thanks

    yeah, but its a giant P.I.T.A.
    select all items you want to copy.
    copy them.
    go to the keychain you want to paste them into.
    select it, click on any item inside it, and hit paste.
    now you get to type in your password and hit return .... for each item you want to copy.
    hopefully you have a short password...

  • I just upgraded to Mavarick.  I can no longer find my mailboxes in my e-mail.  I read to go to 'finder'/ go go to folder the type in ~/Library which I did and I eventually found all my mailboxes.  But I want them to be available from my e-mail.  How ?

    I just upgraded to Mavarick.  I can no longer find my mailboxes in my e-mail.  I went to 'finder', under 'go'> go to folder / mail and eventually I found all my missing mailboxes.  But I want them to show up as they used to, in my e-mail.  How do I get them back?

    .........and just wasted more time clicking on the 'chat online' link which of course does nothing.
    I'll be spending time searching for an alternative ISP instead. Absolutely sick of this.

  • Unable to update iPhoto it says I'm signed in as another user. I have tried two apple ids but neither of them work..

    unable to update iPhoto it says I'm signed in as another user. I have tried two apple ids but neither of them work..

    You need to contact App Store support. They are the only people who can help with account issues.

  • HT201210 my iphone 3gs keeps showing the screen with the connect to itunes display, and I've restored it multiple times on different computers, but everytime it finishes restoring, it shows the display again and the computer says it needs to be restored.

    my iphone 3gs keeps showing the screen with the connect to itunes display, and I've restored it multiple times on different computers, but everytime it finishes restoring, it shows the display again and the computer says it needs to be restored. can anybody help me with this?

    it was saying error code 1, i tried the things it said but none of it worked. now it is not showing an error code at all, it just keeps saying it needs to be restored.

  • How to i transfer playlists from my iPod to iTunes? They are all on my iPhone but not on iTunes how do i get them on there?

    How to i transfer playlists from my iPhone to iTunes? They are all on my iPhone but not on iTunes how do i get them on there?

    iTunes will only transfer purchases back to your computer using the iTunes > File > Transfer purchases from XXX's iPhone.  It will not transfer playlists or non-purchased songs.
    Here is an application that will transfer playlists and non-purchases (from iTunes) songs.  There is a free demo limited to 1,000 songs or you can buy the full featured version for $18.99.  http://www.fadingred.com/senuti/

  • Error message:" Couldn't complete the command because the scratch disks are full" Ive try to fix this many times following different steps but none of them work and my disks equal to over 250GB. Please help.

    . This error message pops up in Photoshop  when i just wanna create a new plain white template. I have downloaded agentransack to track down the temp files and for some reason it says nothing matches the temp files.I have a couple of drives including 2 SSD's. I've  try to fix this many times following different steps but none of them work and my disks equal to over 250GB. Please help. ( I am running windows 7 proffesional) 64 bit

    Good day!
    my disks equal to over 250GB.
    What’s relevant is the space on the disk/s you have assigned as Scratch Disks – what are they (Phortoshop > Preferences > Performance > Scratch Disks)?
    Regards,
    Pfaffenbichler

  • How can I find movies created in past versions of iMovie?  They are still on you tube but I want the original higher quality versions and I can't find them anymore.

    How can I find movies created in past versions of iMovie?  They are still on you tube but I want the original higher quality versions and I can't find them anymore.

    Paul -
    I'm sorry you've lost files, but when you set up an account as Guest, there's a message that clearly states "When a guest user logs out, all information and files in the guest account's home folder are deleted". If you want an account where files are retained, you should create an Admin or Standard type.
    You will need to use data recovery techniques to see if your file can be recovered. The more that you use your computer, the greater the risk that the file will be overwritten. You can contact a professional data recovery service such as DriveSavers (which will be expensive, but you can judge the value of the file) or try something like Data Rescue. The latter has a demo which you can install to determine if your file can be recovered, and then, on purchase, you can actually recover the file.
    Good luck!
    Matt

  • TS3694 my iphone 3g fails to restore. i have tried to restore many times and in different computers but at the end of the restore process it keeps giving me an error message- 1015. can anybody help? thx.

    my iphone 3g fails to restore. i have tried to restore many times and in different computers but at the end of the restore process it keeps giving me an error message- 1015. can anybody help? thx.

    The phone was jailbroken. That's what that error indicates. You can't get help here. You can't get help from Apple.
    Try Google.

Maybe you are looking for

  • How can I use Bluetooth it does not detect others iPhone

    How can I use Bluetooth it does not detect others iPhone

  • How to show Increase/Decrease of Sales Amount compare to Previous Month.

    Hi, My users need to view the percentage decrease/increase of Sales $ compared to previous month, for each Month. How can I create a Restricted Key Figures that show Sales $ Amount as of Previous Month (take note it is not just Previous Month from Cu

  • BPM x Integration Process

    Heya guys, longe time no see. I'd like to start a conversation on the following subject: how do you understand the difference between business processes and XI's integration processes. This idea was inspired by the recurrent confusion that some clien

  • Intell HD 3000 on Satelite L735

    Hi guys, i need yours help. tomorrow bought Toshiba Satelite L735.(with Windows 7 installed). but i didn't find intagrated grafics card in windows list equioment. try to install drivers for integrated hd, but no results... i have only 1 GeForce. but

  • Powerbook G4 will not charge the battery

    Having been away for a month I've returned home to my trusty PowerBook G4 and booted it up only to find that the battery is not charging. The battery is relatively new, only 64 cycles and was performing perfectly normally before my departure. Upon ch