How to move iphoto albums or slideshows from one computer to another

I have iphoto running both on my desktop ('08 = 7.1.5) and on my laptop ('09 = 8.1.2). The libraries contain a lot of the same images but they are not identical (and I don't want them to be). I create albums or slideshows or books on each of my machines and would like to then transfer them to the other one for keeps - without replacing the albums etc. in that library. How do I do that?
Sorry if this is a dumb question that's been dealt with many times. I couldn't easily find an answer.

You can move albums and their photos between libraries but not books, slideshows, cards, etc. So you will have to recreate those items in the other library.
If you are able to get the library with the books, etc. up to speed as far as having all of the photos from the other library you can then copy that full library to the other computer so you will have the book and other keepsakes in both libraries.
I suggest to create a separate library for the book and copy it between Macs as needed. It will be small enough to make the copying process quicker. You can add additional photos to the book library as needed from either of your other libraries.
This tutorial may be of some help if you decide to go that route: Old Toad's Tutorial #9a - Archiving an iPhoto 7(08)/8(09) Book for Editing and/or Ordering at a Later Date.
OT
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
NOTE: this is not the same as routinely backing up your entire iPhoto library folder to protect your photos. It only protects the loss of your organizational efforts that the database file contains.
I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

Similar Messages

  • ?'s Regarding ProDesignTools article "How to Move or Upgrade Adobe CS6 from One Computer to Another"

    I have read this article: http://prodesigntools.com/move-adobe-cs5-between-computers-or-windows-to-mac.html and have the following questions:
    I have an older Windows laptop and would like to purchase a box version of CS6. If my Windows laptop crashes or begins to malfunction, I would like to purchase a MacBook.
    If, at that time, CS7 has not yet been released, is it true that all I would need to do would be to deactivate the software on my Windows computer and install on my MacBook, using the same registered serial number, in a "crossgrade"?
    I understand that there would be an available free 30-day trial of CS6 on the MacBook as I install and activate on it. Would it be possible then for a Mac version of CS6 to be sent to me?
    I would likely not have to purchase another CS6 under these circumstances, correct?
    If, at that time, CS7 has already been released, I would have to do the aforementioned as well as purchase an upgrade to CS7, correct?

    You got it all wrong. No, you cannot simply use your Win serial on a Mac. All this stuff requires a proper platform swap, which is free for current versions, but can only be done once. And you don't get physical media unless you explicitly request it. It's simply a download. If and when CS7 is available, you simply buy the upgrade and switch platforms.
    Mylenium

  • How to move a specific tablespace datafile from one directory to another

    Database: 10.2.0.1
    OS : Generic
    Problem Description : How to move a specific tablespace datafile from one directory to another considering that the database is on Oracle Dataguard setup
    ** Oracle is working on this issue, but in parallel is opening the topic to the Community so that Community members can add their perspective, experience or knowledge. This will further enhance all knowledge bases including My Oracle Support and My Oracle Support Communities **
    Edited by: ram_orcl on 16-Aug-2010 21:21

    Dear ram_orcl,
    Please follow the procedures here;
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14239/manage_ps.htm#i1034172
    8.3.4 Renaming a Datafile in the Primary Database
    When you rename one or more datafiles in the primary database, the change is not propagated to the standby database. Therefore, if you want to rename the same datafiles on the standby database, you must manually make the equivalent modifications on the standby database because the modifications are not performed automatically, even if the STANDBY_FILE_MANAGEMENT initialization parameter is set to AUTO.
    The following steps describe how to rename a datafile in the primary database and manually propagate the changes to the standby database.
       1.
          To rename the datafile in the primary database, take the tablespace offline:
          SQL> ALTER TABLESPACE tbs_4 OFFLINE;
       2.
          Exit from the SQL prompt and issue an operating system command, such as the following UNIX mv command, to rename the datafile on the primary system:
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf
          /disk1/oracle/oradata/payroll/tbs_x.dbf
       3.
          Rename the datafile in the primary database and bring the tablespace back online:
          SQL> ALTER TABLESPACE tbs_4 RENAME DATAFILE      2> '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            3>  TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
          SQL> ALTER TABLESPACE tbs_4 ONLINE;
       4.
          Connect to the standby database, query the V$ARCHIVED_LOG view to verify all of the archived redo log files are applied, and then stop Redo Apply:
          SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
          SEQUENCE# APP
          8 YES
          9 YES
          10 YES
          11 YES
          4 rows selected.
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
       5.
          Shut down the standby database:
          SQL> SHUTDOWN;
       6.
          Rename the datafile at the standby site using an operating system command, such as the UNIX mv command:
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf /disk1/oracle/oradata/payroll/tbs_x.dbf
       7.
          Start and mount the standby database:
          SQL> STARTUP MOUNT;
       8.
          Rename the datafile in the standby control file. Note that the STANDBY_FILE_MANAGEMENT initialization parameter must be set to MANUAL.
          SQL> ALTER DATABASE RENAME FILE '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            2> TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
       9.
          On the standby database, restart Redo Apply:
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE
            2> DISCONNECT FROM SESSION;
    If you do not rename the corresponding datafile at the standby system, and then try to refresh the standby database control file, the standby database will attempt to use the renamed datafile, but it will not find it. Consequently, you will see error messages similar to the following in the alert log:
    ORA-00283: recovery session canceled due to errors
    ORA-01157: cannot identify/lock datafile 4 - see DBWR trace file
    ORA-01110: datafile 4: '/Disk1/oracle/oradata/payroll/tbs_x.dbf'Hope That Helps.
    Ogan

  • HT3819 How do I transfer my entire library from one computer to another?

    How do I transfer my entire library from one computer to another?

    Refer to this article to move your Music and library:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527

  • How do i transfer my entire library from one computer to another?

    How do i transfer my entire library from one computer to another?

    iTunes: How to move your music to a new computer

  • How do I transfer my checked songs from one computer to another - tried exporting library playlist etc but no luck! Please help! I have 26,000 songs - 17,000 are selected and I can't run down the list on my new computer and re-check 17,000 songs! Thanks!

    How do I transfer my checked songs from one computer to another - tried exporting library playlist etc but no luck! Please help! I have 26,000 songs - 17,000 are selected and I can't run down the list on my new computer and re-check 17,000 songs! Thanks!

    Make a smart playlist of your whole library but only checked songs - #4 on  http://support.apple.com/kb/ht1801
    Highlight all files in that playlist, then drag to the other drive.  This isn't preserving any playlists or whatever, just copying files from one drive to another.
    You might want to delete the smart playlist this once you are done because it will probably gobble up resources with that many files.

  • How do I transfer Adobe X1 Pro from one computer to another?

    How do I transfer Adobe X1 Pro from one computer to another?

    Transferring between machines will not work.  You need to install using installation files and your serial number.  Here is a download link...
    Acrobat XI, X - http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
    Find your serial number quickly
    You are allowed to have two machines with activated installations, so you can keep the original installation intact if you prefer.  If not, be sure to deactivate it (choose Help -> Deactivate from the main menubar)

  • How do I transfer keywords in Lightroom from one computer to another?

    How do I transfer keywords in Lightroom from one computer to another?

    You know, in the one screen capture, from the old computer, we can see that the photo has the keyword "bees"
    In the other screen capture, from the new computer, we cannot see the keyword "bees"
    And better yet, show us the Keywording Panel instead of the Keyword List Panel
    I am also concerned that you are showing us the original catalog on the new computer that you created via importing the photos. That's not what we want to see.
    So please confirm  that you are using the catalog file that was copied from the old computer, and when placed on the new computer, you double-clicked on that exact catalog file, and then created the screen capture. Please confirm that you are NOT looking at the catalog you created by importing the photos.

  • How do you move adobe acrobat XI pro from one computer to another?

    how do you move adobe acrobat XI standard pro from one computer to another?

    Hi jeszamom,
    You'll need either the installation media (if you bought from a retailer), or a downloaded installer. If you don't have the CD, you can download Acrobat from this links in this document: Download Acrobat products | Standard, Pro | XI, X - Adobe.
    It's OK to keep it on the other computer; your license allows you to install it on up to two computers. But, if you'd like you can deactivate it on that old computer, which would free up that activation for use on yet another computer. Please see Activation & Deactivation Help - Adobe
    You'll need your serial number to activate on the new computer.
    Please let us know how it goes.
    Sara

  • How to Move or Copy the Tables from One Database to Another Database ?

    HI,
          Can any one help me on this, How i can move or copy the tables from one database to another database in SQL server 2005 by using SQL query. Hope can anyone provide me the useful and valuable response.
    Thanks
    Gopi

    Hello,
    Maybe these links help you out
    http://www.microsoft.com/downloads/en/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en
    http://www.suite101.com/content/how-to-copy-a-sql-database-a193532
    Also, you can just detach the database make a copy and move it to the new server.

  • How do i transfer my itunes playlist from one computer to another

    how do i transfer my itunesw playlist from one computer to another

    Jolly Giant hasn't posted in around a year...
    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have failed to move contacts and calendar items across you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • How do I transfer my bookmark toolbar from one computer to another? Not the bookmarks in general, but the toolbar...

    How do I transfer my firefox bookmark TOOLBAR from one computer to another? I have transferred the bookmarks, but the toolbar did not get transferred with it...

    Here's what I do when transferring from one profile to another, on the same computer.
    Go to "organize bookmarks", click on "bookmark toolbar", click on any bookmark in that category, click on menu "organize", click "select all", click on "organize" again, click "copy".
    Then close firefox, start it again with the other profile, go to "organize bookmarks", click on "bookmark toolbar", click "organize", click "paste".
    Now if you are moving to another computer, try save the copied content to a text file and move that text file to the other computer, then use "paste" inside firefox.
    Good luck.

  • How do I transfer music in iTunes from one computer to another computer?

    I have an iTunes Library full of music in a laptop with Windows and I want to transfer it to my desktop computer, a Dell with Windows. I've heard you can import songs from your iPod that you got from one computer to another, I'd also like to know how to do that, because I think that might be the only way.

    You can use your iPod as a hard drive and move the ITunes folder:
    How to use your iPod to move your music to a new computer
    There is a manual method of accessing the iPod's hard drive and copying songs but not playlists back to iTunes on Windows posted in this thread: MacMuse - iPod to iTunes
    If you prefer something more automated then there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod, this is just a selection. Have a look at the web pages and documentation for these, they are generally quite straightforward.
    iPod Access Mac and Windows Versions
    YamiPod Mac and Windows Versions
    PodUtil Mac and Windows Versions
    iPodCopy Mac and Windows Versions
    PodPlayer Windows Only
    iGadget Windows Only
    Alternatively you can network the two computers:
    New PC & moving iTunes library
    Copying songs over a network to use with iTunes for Windows

  • How do I back-up Organizer tags from one computer to another?

    Having successfully restored my PSE6 Organizer from one computer to another as back-up,I wish to keep backing-up. However, I have tried CDs, DVDs,external hard drives and flash discs and the tags are not imported, or rather,just one or two are.
    I click ' Select All' when I import, the ticks are shown, but it does not work. Thank you,
    Ian Julian
    www.natureandpitures.com

    I need full back-up as I need Organizer for my work, so use 2 computers. I initially backed-up my entire catalogue on an external hard-drive. Then on the new computer, I used 'Restore'. Although this took 14 hours, it worked, with all tags and captions, although not Albums.
    Now, I wish to continue to back-up not only my new photos, but also the tags. I cannot use 'Restore', as this will apparently delete all those pictures already there. So, first of all, I open PSE6, then, 'Make a CD/DVD' and proceed to save. To transfer to the other computer, I use 'Get Photos or Videos'. Everything is okay, except for the tags. I have also tried just dragging the pictures over to Organizer, with the same result.
    Thank you,
    Ian Julian
    www.natureandpictures.com

  • How do i transfer my music library from one computer to another?

    I want to transfer my itunes music library from one computer to another, how do I do this?

    sam06,
    Here are a couple of links that should be of interest:
    http://docs.info.apple.com/article.html?artnum=93366
    http://discussions.apple.com/thread.jspa?messageID=607339&#607339

Maybe you are looking for

  • Photo Quality on Picture Book

    I am trying to create a picture book in iPhoto using photo's from my son's football team. Some are digital images, but most are scanned pictures. Many of the scanned pictures have warning indicators in the picture book maker that says the printed pic

  • Error starting up ApEx's Oracle HTTP server

    Hello. I have just configured a brand new Oracle HTTP server on a brand new ApEx database. When I try to start the server, it doesn't start and I see errors in the log files. dads.conf in Apache/modplsql/conf directory: Alias /i/ "/u01/app/oracle/pro

  • How can I get rid of the prompt to update firefox? I don't want to update

    A box appears when I try to connect to the internet that says there's an update for Firefox. I did that previously and got stuck with Firefox 4 which took me forever to get rid of and downgrade back to 3.6 I do not want to upgrade but this box has ap

  • Request and Response Scenario for JMS adapter

    Hi, I am working on IDOC-XI-JMS, JMS(sender)- XI - JMS (receiver)scenario and this is going to be real time. If any record is update in customer master then that record will be sent to JMS provider MQ series and lock the record in the legacy system a

  • Find/change dialog box out of reach

    Hi, I'm unable to use the find/change dialog box; it's out of reach! Even when I try to change the resolution of my screen, I still can't get a grab at it