PSElement6 & PS Album 2 files

I have been using PS Album 2 since it came out.  A couple of years ago I bought PS Element 6.  I finally have some time to learn Element 6.  My question is, can I transfer all my pictures from Album 2 to Element 6?  If so, how would I do the transfer?
Thanks for the help.
Larry

Larry,
In theory PSE 6 should be able to upgrade your catalog from PSA 2.  However that transition from PSA2 is not always "smooth".
1- I suggest that you read this FAQ
http://www.johnrellis.com/psedbtool/photoshop-elements-faq.htm#_Problems_converting_catalo gs
2- I call your attention to doing the preparation commands of Reconnect All Missing Files and the Catalog Recover mentioned in that FAQ. I think that they exist in PSA 2 -  but I no longer have PSA2 installed in order to verify that.  I can't guarantee that doing those commands will avoid all problems but they definitely should be done as a cleanup of your PSA 2 catalog prior to starting the catalog upgrade process.
3  Because you say you will be using PSE 6,
there is one PSE 6 Organizer bug for which I am warning you because it will delete some of your personal photo files if you encounter it. Normally the recommendation is to move photo files that are in the PSE Catalog by using PSE commands.  However, because the PSE 6 Organizer has a bug that deletes a photo file if you attempt to move a file of the same name in to a destination folder, I personally can not recommend that approach for version 6.
Possilbe workarounds
3A -- Move a small number of files with Windows Explorer and then use the PSE 6 Reconnect command.
3B -- Another workaround would be to manually check for duplicate names in the source and target folders and then once you are confident there are no duplicate names, use the PSE Organizer to move the files.  Or to first make an extra copy (backup) of ALL folders to which you will be moving photo files and then use the PSE Organizer to move photo files.
3C -- Of course, the simplest approach is to NEVER move photo (or other media files) after they have been cataloged in the PSE 6 Organizer catalog.

Similar Messages

  • Malformed album data file

    I am trying to split an iPhoto Library using iPhoto Library Manager (3.5.7). In Manager the library that I am trying to split shows a message that the album data file is malformed:
    XML Parser error: Encountered unexpected character 2 on line 7
    Old-style plist parser error: Malformed data byte group at line 1; invalid hex
    What to do? There are 10 albums. Would it help to delete the albums?
    Thanks,
    Owen

    since this is an iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ - error you might look at their support page and/or contact the authors
    LN

  • Importing CD to Artist folder\Album folder\file with track number and name:

    I have a problem then importing my cd’s to my harddisk using iTunes.
    On my previous pc I got what I want, Artist folder, Album folder and file with track number and name:
    e.g.
    D:\My Music\B.B. King\Blues On The Bayou\01 Blues Boys Tune.mp3
    D:\My Music\B.B. King\Blues On The Bayou\02 Bad Case Of Love.mp3
    D:\My Music\B.B. King\Blues On The Bayou\03 I'll Survive.mp3
    But now I get:
    D:\My Music\Compilations\Blues On The Bayou\01 Blues Boys Tune.mp3
    D:\My Music\ Compilations \02 Bad Case Of Love.mp3
    D:\My Music\ Compilations \03 I'll Survive.mp3
    In iTunes my settings are Edit -> Preferences -> Advanced: iTunes Music folder: D:\My Music and checkmark in both: “Keep iTunes Music folder organized” and “Copy files to iTunes Music folder when adding to library”.
    My version of iTunes is 8.0.1.11
    Thanks in advance
    Peter

    It will depend on the album. Gracenote considers anthologies, a collection of tracks by the same artist taken from different albums, as a compilation. In iTunes the compliation setting should really only be applied to a collection of tracks by different artists.
    tt2

  • How to Get Albums in File-Name-Order Photo

    When I updated my iPod Touch to V4.0 and iTunes (V9 on Windows XP) re-synced it, I found that my photo albums were now in Picture Date order rather than PC file name order. I tried several things that didn't work.
    What worked was using the Photoshop Essentials Organizer to change the picture date on all the photos in an album to the same date and time (this can be done to all selected photos in one operation).
    I did the sync in two steps. First I moved the album out of the iTunes photos directory and then synced my iPod which deleted the album. Then I moved it back and re-synced.
    Does anyone know of an easier trick? I’ve already submitted a feedback item to Apple that they should make file-name-order an option in iTunes
    Andy…

    The trick that I used is to append the URL with the name of the file. So if your url is "http://domain.com/attach", use "http://domain.com/attach/filename.doc". IE and Netscape parse the URL to determine what the filename is, so by placing this text at the end, you essentially let the browsers know what the filename is. :)
    I have design a program to get the attach file from an
    attachment. But when I click the link to save the
    file, the default name of the file is 'attach'
    whenever I get different files. Who know what is the
    problem, please tell me the truth.
    Here are some codes of the program.<< snip >>

  • ITunes extracted album art file name oddity (Japanese characters)

    I am on iTunes 10.6.3. After doing a clean install of Mountain Lion I have noticed that although the iTunes version has not changed some behavior is slightly different than when it was running under Snow Leopard.
    Any time I drag album art from an album titled with Japanese characters out of the "Now Playing" pane in the lower left of the iTunes GUI the image file in Finder has been named with weird characters. I can successfully rename the file in Finder with the proper Japanese characters. Why is iTunes naming the image files incorrectly?
    Here is an example of an album art image file both as it came from iTunes and after being renamed. The top one is the incorrectly titled file that came straight from iTunes.

    Try this...
    btabz: My songs have artwork in iTunes, but it won't transfer to my iPod!
    It is for a slightly different issue, but the instructions should work.
    If those don't work, you may need to restore the iPod as the link says.
    btabz

  • Adding PSD files to existing Album PSE files

    We have Photoshop 10 installed and my wife has created an Album.  Either the PSE file has been moved or deleted, but neither a manual server of the hard drives or using the reconnect feature was able to find the file. I was able to find an older version of the file as a different name, but it is missing a number of pages.  In my search I was able to find all the PSD files of the missing pages, is there a way to add these pages to the other PSE file I found?
    Any help would be much appreciated.

    Yes but I want to code - not interested in doing it from command line sorry.
    At the moment I have code like this which adds filename1.xml and filename2.xml to eg.jar: -
    String eg1 = "help me!!"
    String eg2 = "what is the solution?"
    JarOutputStream jar = new JarOutputStream(new FileOutputStream("eg.jar");
    JarEntry entry1 = new JarEntry("filename1.xml")
    JarEntry entry2 = new JarEntry("filename2.xml")
    entry1.write(eg1.getBytes(),0,eg1.length());
    entry2.write(eg2.getBytes(),0,eg2.length());]
    Now after this has been created, I want to start a new program and write a third file to the jar using code - how do I do that is the question?

  • ITunes & non-MP3 album-related files

    My current music library is sorted into separate folders for each album. In addition to the MP3s, many of these folders also contain other files with additional art, text files, playlists, pdfs, etc.
    iTunes leaves these other files behind if I place the album folder in the "Automatically import into iTunes" folder.
    If I let iTunes manage my folder structure, how will it handle these additional files? Will iTunes move these additional files with the MP3s as it re-organizes them, or mangle everything?

    iTunes organization does not do anything with "other" files that may be in the folder with the songs. If you want to keep them together, do not use the "Keep files organized" feature nor the "Automatically Add" folder. Rather, put the folder where you want it, and then add the files to your iTunes library.

  • "album art file corrupt: run chkdsk utility"

    a message saying "album art folder is corrupt: run chkdsk utility" pops up every time i connect my ipod to my computer... on top of that, my album art won't display... what should i do?

    Running Windows. Go to MY Computer. Find your IPOD and "Right Click" and select "Properties", then "Tools". Select "Error Checking". This will take a few hours to complete.
    http://docs.info.apple.com/article.html?artnum=300554

  • Can't print itunes list of albums to file. ITunes will not allow access to file.

    Also would like to know ho to print to pdf
    This question was solved.
    View Solution.

    manniesm
    Welcome to the HP Community Forum.
    You are actually asking two different questions - and two different approaches.
    iTunes does have restriction policies concerning its folders -- for example, you cannot save data into certain areas within the iTunes setup, even though you essentially the rights to most of your computer.    You cannot write into protected areas - other areas you cannot even access files or data.
    You can perhaps make a list of the songs you have, depending on how you go about it, and save that list into a file -- and then save that file into a location on your computer in which you have permission to save files.
    You can save a list into Office Word format (.docx) and then save that file into a .pdf format.
    You can then print that .pdf file.
    If you can view the files on the screen -- and if an image will suffice as a "list", then you can use Snip to create an image of the file and then print that as your list.
    Snipping Tool - Windows 7
    Snipping Tool- Windows 8.x
    The following includes an example of "Scan to Document or Photo":
    Install Full Feature Software – Photosmart 7520
    More on PDF printing:
    Scan_Multiple_Documents-Combine
    Manage Print Output with Print Preview
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Click the Kudos Thumbs-Up to say Thank You!
    And...Click Accept as Solution when my Answer provides a Fix or Workaround!
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Kind Regards,
    Dragon-Fur

  • When I try to assign files to albums, I get the message "error applying keyword tags"

    This just started to happen, not sure why.  I don't assign or use keywords.  It does it on all albums.  I made new albums and it did not work, even on the new albums.  There was one album that did not have the problem, but when I tried to transfer an afftected album's files to it, it developed the problem.  I reset the preferences in both Organizer and Editor, and that did not help.  It prevents me from moving files out of as well as into albums.  Any ideas on what caused this and what I can do about it?  Thanks for any help.    

    A last try:
    - what if you try to move the pictures with the common keyword (no album selected) to a new subfolder via the organizer,
    - delete them from the catalog
    - delete the catalog itself
    - and re-import them ?
    There is clearly something wrong with 'normal' or new albums as well in your case.
    Your experience shows that the problem is not only in some albums, it's linked to the catalog itself. If you can create a new catalog and reimport the files of your test album and work normally, then you can test that other catalogs are ok. Otherwise, if all catalogs have the same problems, it's linked to the organizer itself, but I doubt it since you have already deleted the organizer prefs (the psa.prf and status in your 'Roaming' folder).
    I have found that sometimes, using a newer version of Elements (a trial one if you want) and converting the catalog can solve problems; but on the other hand, PSE12 has new problems with converted catalogs... Also, the backup and restore process probably can't help because the catalog database is just copied, not converted.
    What you have done with your test albums means that any meaningful organization is safely stored into the files metadata section, so that you can recover it in other PSE versions, Lightroom, Windows explorer or many organizing softwares. Of course with a large number of albums, that looks like a huge job.

  • How do I make a file to export from a standard album? It rearranges photos from the sequence I created.

    I created a standard photo album. When I try to export to a file or stick file, it rearranges the pictures. How to keep the same order???

    Two ways to get the order you want:
    1 - export out of the album via File ➙ Export ➙ File Export  with the option File Name = Album Name with number.  That will give you Album Name -01.jpg, Album Name-02.jpg, etc.
    2 - select the photos in the album and use the Photos ➙ Batch Chage ➙ File Name to Text with the option to add a sequential number added to each file name.  That will give you Text-01.jpg, Text-02.jpg, etc.  Then export as before but with File Nane = Title selected.
    OT

  • Why do I receive the exclamation point when I just change the album name? File goes missing?

    I keep all of my itunes media on an attached network hard drive.  Had no problems for months but over the past 45 days I've noticed that material has started to go missing that I know I did not delete.  I have found no malware on my system.
    I read a script to tell me all the files that had an exclamation point.  There were some TV shows (an entire season gone missing) and some CDs.
    I just did a test and imported a CD.  I then clicked "get info" and changed the name of the album.  Immediately I received the exclamation point and when I tried to find the original file it is gone.  I have no idea where the file has gone to.  I've tried searching, looking around to find it, and I can't. 
    Why is itunes having this behavior?  How is the file being deleted?  Any other thoughts or ideas of what I should do to stop this?
    I've also sent a support request to the hard drive mfg (lacie) but I'm not sure I'll get much help there.
    Thanks.

    More info:  I just ran the same test two ways.  One, I had some files on my desktop, run a script to move these files to the "automatically add to itunes" folder, the files move just fine to my external hard drive and to itunes.  The file plays just fine and the "get info" tab shows it is playing the file from the external hard drive where the file was moved to (not copied).  But, as soon as I change the artist name or the album, the file goes missing and I get the exclamation point.
    I ran the same test by putting the files on my desktop, but instead of moving the file to the "automatically add to itunes folder" I just double clicked the file to play it.  I let itunes add a copy and organize my folders.  This time, the file would have been copied (not physically moved) and I see itunes is playing the new copied version.  This time, when I try to change the artist name or album, I have no problems.
    I've never encountered this before.  Any info?  Thanks.

  • How to sort songs by Album artist and song number?

    System: +OS X 10.5 updated to 10.5.2 . iTunes 7.6+
    I have a CD "+Cafe Del Mar - Volume 01+". Added songs to Library. Every track has different Artist. So, I have 12 songs with individual Name and Artist. Then have put value "+Volume 01+" as Album in File Info and Album Artist as "+Cafe Del Mar+". This way songs are automatically grouped together whenever I sort my library by Album or Album Artist.
    Unfortunately in latter case (sorting by Album Artist) iTunes uses Artist field instead of Song Number within the Album to sort tracks. Here are links to screenshots I made to show what we are talking about here:
    Sorting by Album: http://img85.imageshack.us/img85/7783/picture1qj6.jpg
    Sorting by Album Artist: http://img504.imageshack.us/img504/4199/picture2uo9.jpg
    How can I fix it and make iTunes to sort by Track Number within the same album even if I sort things by Album Artist?
    Thanks.

    From MacOSHints:
    How to use iTunes 7 new Album Artist field
    Mon, Sep 18 '06 at 7:30AM PDT • Submitted by stevebr
    iTunes 7 thinks of an album by a performer (call the performer XYZ), where one or more tracks are by "XYZ featuring ABC" or "XYZ and ABC," as separate albums. In the past, the only workaround was to set the album as a compilation to avoid this, but this is an incomplete solution, and it had the side effect of the album not being classified or filed properly.
    Enter the "Album Artist" tag in iTunes 7. Set this tag (via Get Info with all all tracks of the album selected) to the main artist's name, and the album will be unified.

  • How do I combine two versions of the same album into 1

    I have songs from the same album on 2 albums in my library. How do I combine them?

    Select all the songs from the album, choose File--> Get Info, then under the Album area, type in the appropriate album title.  They should all appear under one album at that point.

  • One album will not import to authorized computer

    I have a Macbook and an iMac.  Both are set up to share, both are authorized in iTunes under the Apple ID I've had for years. I make all purchases on the Macbook. Then I copy them over to my iMac by selecting the Macbook under "Shared," choosing "Show: items not in my library," and importing those songs to the iMac. I copy all purchases onto the iMac so I can delete rarely-listened-to songs/albums from the Macbook when space gets low, which is often.
    There is one album that the iMac will not let me import. For each song from that one album, I get an error saying there's a problem downloading it, because "You do not have enough access priviledges for this operation. Please check that the connection to the network is active and try again."
    The crazy thing is, my network connection is just fine; albums I purchased minutes before and after this one copied over fine. It's just this specific album that will not import. The summary pane for each of the album's songs look the same as all my other files: purchased AAC audio files, same bit rate, same sample rate, shows my name and Apple ID as the purchaser, same directory location on my computer, all files have the .m4a extension, ... nothing at all seems strange or unusual about this album's files.
    Does anyone have a clue why this is happening and how to fix it? In the past month, I've imported close to 12,000 songs. This is the only album this has ever happened with.
    P.S. If anyone's curious which album won't transfer, it's Beck's Sea Change, purchased October 2nd, 2012. Oddly enough, I originally purchased this album (from iTunes) in 2008, but in 2009 iTunes began saying it couldn't locate the files. I didn't delete them — they just up and disappeared. That's never happened with anything else before or since, either. It's as if there's something wrong with the files of this particular digital album.

    Hello welcome to apple discussions,
    Itunes does tend to "Mess Up" sometimes when Importing/adding by folder. what you first need to do is try adding each file by going to File>Add FILE to library in iTunes.
    If you do this and get no error message or anything but the one file you just tried to add does not show in iTUnes, its one or the other, Either the tags are corrupt or the song itself is corrupt. iTunes tends to be more "Picky" on windows then other windows based programs.
    You can test the tag issue by searching google or yahoo for a program called "TidyMP3". Just pick one song that will not go into iTUnes, use Tidy MP3 to "Strip" the ID3 tag off this test song and then try to add it to iTUnes. If it goes in you now know the issue and can use this program to strip all tags off your "Problem" MP3s.
    If it doesn't theres something wrong with the song itself. I covered a similar issue before where the person had the songs in iTUnes but it wouldn't play because the song was corrupt and they seemed to come accross great programs for fixing this so heres the link to that post, you can overlook it and follow the links they provide http://discussions.apple.com/message.jspa?messageID=2487497#2487497

Maybe you are looking for

  • Cancelled PR

    All, Suppose I have cancelled a PR by going to txn ME55 , now there is any report where I can see the cancelled PR's ? After cancelling a PR in ME55 , then that PR is not visible after executing ME55 . How I can find out that ? No workflow here . Kin

  • Access iTunes library on an external hard drive

    I am new to Vista. I backed up my itunes library from my imac to an external hard drive. How can I use my HP with Vista to access that library?

  • Trim marks positioning incorrect for files that have a larger crop box than trim box

    I've seen this question in one other place on the forum, but it doesn't look like it ever got answered. It's been driving me nuts for months, so I'm going to try to do a very simple walkthrough for this problem to find out if this is a glitch in the

  • Vendor shipment receipts and tracking

    Hello Sir, we have orders procured directly from a vendor through a solicitation process. An approved order placed within the system triggers a purchase requisition. This purchase requisition is placed in a solicitation, and a purchase order is sent

  • Mm02 - Sales text view update?

    Hi Friends, I am working on the material master change (i.e MM02 transaction) and I need to upload Material master u2013sales text view and purchase order text view and all other additional data views. I have updated one material in recording mode (i