How do i import keyword tags from PSE12?

I have just downloaded PS and LR5 from Adobe CC. I was using Photoshop Elements 12. How can I import my keyword tags from the PSE Organizer. I saved them as .txt files but they will not import because they contain "special characters." What do I do?  Please do not tell me I have to start over... ~

is there a way to import tags from PSE 12
The PSE 12 Organizer and LR 5 use different file formats for exporting and importing keyword hierarchies. PSE uses XML format, while LR 5 uses a tab-separated format.  If you're a programmer or technically minded, you could convert from one to the other using your favorite scripting language.
But the approach suggested by dj_paige can be modified to accomplish what you want without scripting, by copying the keyword hierarchy from the "upgraded" LR catalog that was created from your PSE catalog to your "good" LR catalog:
1. Make a manual backup of your "good" LR catalog: Lightroom Help | Back up a catalog.
2. In LR, open the catalog that you created previously by upgrading (converting) the PSE catalog -- you can usually get to that catalog by doing File > Open Recent.
3. Go to grid view in the Library by doing Window > Library followed by View > Grid (usually you're already in Library grid view, but just in case...)
4. Make sure the Keyword List panel is showing on the right by doing Window > Panels > Keyword List.
5. You should see the keyword hierarchy from your PSE catalog.  If you don't, stop and post a screen shot of the entire LR screen.
6. Do Metadata > Export Keywords to export those keywords as a LR-format text file.
7. Open your "good" LR catalog by doing File > Open Recent.
8. Do Metadata > Import Keywords and select the file you exported in step 6.
9. All the keywords that were exported in step 6 will be added to the current catalog, and there will be duplicate keywords if there were already keywords of the same name in the catalog.  Those new keywords will not be attached to any existing photos in the current catalog.

Similar Messages

  • PSE 13 "Import Keyword Tags From File" Fails

    Whenever I try to do the above command, it fails. As shown in the attached figure it gets to 9%. Does anyone have any ideas on how to troubleshoot this error?
    Thanks in advance.

    is there a way to import tags from PSE 12
    The PSE 12 Organizer and LR 5 use different file formats for exporting and importing keyword hierarchies. PSE uses XML format, while LR 5 uses a tab-separated format.  If you're a programmer or technically minded, you could convert from one to the other using your favorite scripting language.
    But the approach suggested by dj_paige can be modified to accomplish what you want without scripting, by copying the keyword hierarchy from the "upgraded" LR catalog that was created from your PSE catalog to your "good" LR catalog:
    1. Make a manual backup of your "good" LR catalog: Lightroom Help | Back up a catalog.
    2. In LR, open the catalog that you created previously by upgrading (converting) the PSE catalog -- you can usually get to that catalog by doing File > Open Recent.
    3. Go to grid view in the Library by doing Window > Library followed by View > Grid (usually you're already in Library grid view, but just in case...)
    4. Make sure the Keyword List panel is showing on the right by doing Window > Panels > Keyword List.
    5. You should see the keyword hierarchy from your PSE catalog.  If you don't, stop and post a screen shot of the entire LR screen.
    6. Do Metadata > Export Keywords to export those keywords as a LR-format text file.
    7. Open your "good" LR catalog by doing File > Open Recent.
    8. Do Metadata > Import Keywords and select the file you exported in step 6.
    9. All the keywords that were exported in step 6 will be added to the current catalog, and there will be duplicate keywords if there were already keywords of the same name in the catalog.  Those new keywords will not be attached to any existing photos in the current catalog.

  • Computer died...now how can I retrieve keyword tags from my old hard drive?

    I got a new computer and installed Elements 9.0 on it.  I am retrieving the pics from my old hard drive just fine but I seem to have lost the majority of my old keyword tags.  Any help?  Thanks.

    If you didn't write the keyword tags to all the photos when your old computer was working, you can't get the tags back by simply retrieving the photos.
    You'll need to retrieve the entire catalog directory.  When you open that old catalog on your new computer, all your photos will be listed as "missing".  Use the Reconnect All Missing Files to connect them by browsing to their current location.
    Ken

  • How can I remove people tags from MULTIPLE images in Organizer 13?

    How can I remove people tags from MULTIPLE images in Organizer 13?  The strategy for removing keyword tags does not work. It appears that keyword tags and People tags are considered something completely different in 13.  I highlight multiple images, right click, and under keyword tags it says there are no keyword tags. There does not appear to be an option for people or other tags. Can anyone help? It is going to take literally hundreds of hours for me to do this one photo one tag at a time.  ??

    Comp. 792 wrote:
    Hi, my linked images all have dashed lines at the bottom of the images. I searched for an answer and someone said to add:
    img a {text-decoration:none:}
    to the end of my CSS,
    That CSS is complete nonsense. The correct way to remove borders from around links is here: http://forums.adobe.com/thread/417110.
    If you want to get rid of dotted lines, they are almost certainly caused by the outline property. However, outlines around links are there for a reason: it provides a visual "you are here" clue to people who navigate the web with the keyboard, either through preference or because of disability. You shouldn't remove the dotted outline without providing a different visual clue.

  • How to implement metadata keyword tags

    Can someone please advise me on how to implement meta keyword tag <meta name="keyword" content="..."> for individual community page? We have a set of keywords for each community page. I know we can just add the line above to base page layout if they are common keywords to all the community page but not sure whats the best way to add unique set of meta keyword tags to individual community page? FYI - We are using UCM for managing content for our site.

    I always did this using a property on the page object.
    1. Create a new property called "meta-keywords" and associate it to the community pages object through the global object property mapper utility.
    2. Edit your community page and add any keywords you desire.
    3. Write a custom tag for said property that takes a uuid as input (this way you can migrate and the tag remains the same.
    4. same idea works for any meta tag.
    Note: you are limited to 255 characters this way.
    Or you can probably code some kind of tag that reads from UCM as well, but i always did it the above way.
    Here is a tag example:
    public class MetaPropertyCurrentPage extends ATag {
         private OpenLogger log = OpenLogService.GetLogger(
                   OpenLogService.GetComponent(PTDebugHelpers.COMPONENT_PORTAL_COMMON),
                   "customizations.tag.standard.MetaPropertyCurrentPage");
         public static final RequiredTagAttribute UUID;
         public static final ITagMetaData TAG;
         static {
              TAG = new TagMetaData("currpageproperty",
                        "Displays the value of the property in the current page from the uuid.");
         UUID = new RequiredTagAttribute("uuid", "The UUID for the property you want to open.",
    AttributeType.STRING);
         @Override
         public ATag Create() {
              return new MetaPropertyCurrentPage();
         @Override
         public HTMLElement DisplayTag() {
              log.Info("Entering meta lookup");
              String objectid;
              String classid;
              HTMLElement result = new HTMLElementCollection();
              IEnvironment env = GetEnvironment();
              AActivitySpace owner = TaskAPIUICommon.GetEnvTypeObject(env);
              //get pageid
              int pageid = TaskAPIUICommunity.GetCurrentCommunityPageID(owner);
              //check if not a community page
              if (!TaskAPIUICommunity.IsCurrentPageCommunityPage(owner))
                   return result;
              //convert to objectid
              try
                   Object[] objectAndClassId = ((IPTMigrationManager)(((IPTSession)GetEnvironment()
                   .GetUserSession()).OpenGlobalObject(PT_GLOBALOBJECTS.PT_GLOBAL_MIGRATION_MANAGER,
                   false))).UUIDToObjectID(GetTagAttributeAsString(UUID));
                   objectid = objectAndClassId[PT_MIGRATION_OBJECT_COLS.PT_MOC_OBJECTID].toString();
                   log.Info( "found objectid" + objectid);
                   classid = objectAndClassId[PT_MIGRATION_OBJECT_COLS.PT_MOC_CLASSID].toString();
                   //check to make sure its a property
                   if (Integer.parseInt(classid) != PT_CLASSIDS.PT_PROPERTY_ID)
                        return new HTMLComment("UUID does not belong to a property");
              catch (Exception e)
                   log.Error(e, "error getting the objectid from the UUID.");
                   return null;
              //now get the property from it
              IPTSession session = (IPTSession)GetEnvironment().GetUserSession();
              IPTObjectManager objMgr = session.GetPages();
              IPTPage page = (IPTPage)objMgr.Open(pageid, false);
              log.Info("Page name: " + page.GetName());
              IPTQueryResult qresult = page.GetObjectProperties().GetSinglePropertyData(Integer.parseInt(objectid), PT_PROPIDS.PT_PROPID_PROP_VALUE);
              if (qresult.Data() != null)
                   IPTObjectManager objMgr2 = session.GetProperties();
                   IPTProperty prop = (IPTProperty)objMgr2.Open(Integer.parseInt(objectid), false);
                   String propName = prop.GetName();
                   log.Info("Property name is: " + propName);
                   String value = (String) qresult.Data()[1][0];
                   if (lang.equalsIgnoreCase(propLocale) && value != null && !value.equalsIgnoreCase(""))
                        result.AddInnerHTMLString("<meta name=\"" + propName + "\" content=\"" + value + "\" />");
              else
                   log.Info("Property Value not found.");
              return result;
         }

  • How do I transfer all tags from Elements 8 to 11?

    How do I transfer all tags from Elements 8 to 11? Only part of the tags transferred for elements 8 to 11. I'm using Windows 7.

    It depends...
    If you are still on the same computer and OS, the Organizer in PSE11 (or PSE12) will be able to convert the old catalog to its own format, while keeping the old catalog unchanged.
    If you are changing computer, drive or OS, the best method is via a full backup and restore:
    http://helpx.adobe.com/photoshop-elements/kb/backup-restore-move-catalog-photoshop.html

  • Retrieving missing keyword tags from a previous version of Photoshop Elements

    I just purchased an upgraded version of Photoshop Elements 12 and Premiere Elements 12, but after all my photos were converted to the new version, all of my keyword tags from the previous version are not showing.  How do I retrieve them?

    Thank you so much.  I had tried to use both of those buttons, but I didn't know that I had to use them in that order in order for the tags to show up, and I couldn't find the answer in the Adobe help section, either.  Looks like all my tags are there and the problem is solved.  Thanks again.

  • Elements Organiser 10 in Windows 8 Lost the 'Imported Keyword Tag'

    Using Classroom in a book (Elements 10) with Windows 8, I seem to have lost the 'Imported Keyword Tags' in  the Keyword Tags Panel whilst struggling in Lesson 2, whilst trying to make sense of the Organiser,

    From: jsRedpath
    Sent: 01 March 2013 02:11
    To: Gerryh7
    Subject: - Re: Elements Organiser 10 in Windows 8 Lost the 'Imported Keyword Tag'
    Adobe Community
    Re: Elements Organiser 10 in Windows 8 Lost the 'Imported Keyword Tag'
    created by jsRedpath in Photoshop Elements - View the full discussion 
    I have a similar situation.  In upgrading from Elements 7 to 11 all my keyword tags are lost; both in the keyword panel and the tags on each of  my imported pictures.  I didn't install the Elements 11 I had a tech do it when I took my computer in for other issues, so I'm not sure of any of the specific steps taken when this was done.  Any way to get these back short of "tagging" each picture again?
    Reply to this message by replying to this email -or- go to the message on Adobe Community
    Start a new discussion in Photoshop Elements by email or at Adobe Community

  • Compare 'Folder tags' to imported Keyword Tags

    I have asked questions about thumbnails in PSE11 that aren't being correctly displayed ,but I have yet to get any answers.
    I though perhaps I should breakdown the problem into easier component to see if I can get to understand just what is going on & be able to fix the problem myself.
    For instance if I open the 'My Folders' I see a list of file names that correspond to those 'imported keyword tags.'  If I take a folder called China I see the thumbnails & when I hover the mouse I see that it has tags China,Beijing area & my wife's name.  If I were then to go to the imported Keyword Tags & I can see a tag 'Dubai'.  Just to see what happens I drag the picture to the Dubai tag.  This is accepted.  Because if I go back to the original tag I now see tags China,Beijing area,& my wife's name as well as Dubai.
    If I go the see the folder 'Dubai' in my folders the picture doesn't appear.  Why not? This is just a crazy experiment but I can't make out what happened.  Any Ideas?

    Hi,
    Photoshop Elements does not enforce a direct relationship between Folders and Tags - they are different ways to view your images.
    If you start by showing all media and then select a folder, you will get the all the images in that folder shown.
    If you start by showing all media and then select a tag, you will see all the images with that tag.
    If you start by showing all media, then select a folder and then select a tag, you get all the images in that folder that have the selected tag.
    A tag can be applied to any image irrespective of which folder it is in.
    For instance, if you have two folders called Holiday 2012 & Holiday 2013 with photos of your holidays for each of the years and in each year you have a photo of the same monument, you could tag those photos with the monument name. Later you could view all the holiday photos for a particular year or you could show the photos of the monument for the two years.
    It is possible to create tags from the folder name but the relationship is not maintained.
    The fact that you talk about "Imported keyword tags" suggests that you entered the tags outside of Photoshop elements before you imported them. If you had a previous version of Photoshop elements, the normal approach is to convert the old catalog. That way the tags would show up in the original structure rather than be "imported".
    I hope that the above helps - forgive me if I stated what you already knew.
    Brian

  • How can I import network tags programmatically

    How can I import network tags programmatically from a remote DSC module 6.1 application and save it to the local SCF-File ?

    Programmatic tag configuration/importing is not possible in 6.1. Some steps, specifically the importing, have to have user intervention.
    Regards,
    Khalid

  • HT1347 how do I import a playlist from my iPad to my itunes library on my computer please

    Hi can someone please tell me how I can import a playlist from my iPad to my iTunes library on my computer please?

    Itunes will only accept mp4 or m4v files. If the file is not this format either rerip it and convert to m4v or mp4 depending on your conversion software. You will also need to tag it explicitly as a movie so it ends up in the right place.
    Personally I use Subler for that as it enables me to set The HD setting that shows up in itunes

  • How do I import music files from a flash drive to my iTunes library on my laptop

    How can I import music files from a flash drive to my iTunes library? I put the flash drive into my laptop, selected " add file to library", selected the songs I wanted from the flash drive, and it looked like they were added as the names show under " recently added". Then I removed the flash drive from my laptop But when I select one of the songs and try to play it a message saying "the song could not be used because the original file could not be found. Would you like to locate it?"  So it seems the actual files did not transfer. What do I do? I have done this. With a cd in the past with nsomproble,.

    Suncadia wrote:
    Thank you!! This worked. It does seem there should be an easier way but this did work.
    Dragging the files to "Automatically Add..." is pretty easy once you know where to look.  Just make sure iTunes is running when you do it; otherwise the files will just sit there until the next time you open iTunes.
    (Interestingly, the way you originally tried to do would have worked fine except for one little detail:  you have to first go into Edit > Preferences > Advanced, and check the box for "Copy files..."  If that is not done, iTunes will reference the files on the flash drive, which of course are not accessible once the drive is removed, as you saw.)
    Anyway, glad that all is now sorted.  Enjoy the music!

  • How do i import my library from an external hard drive. Exported it as had to wipe pc and reinstal windows but when i try to import nothing happens

    How do i import my library from an external hard drive. Had to export it as had to reinstal windows due to a conflict between windows and i-tunes. Wen i try to import nothing happens despite selecting the file. Can you import from an i-phone to i-tunes?

    What do you mean bye exported the library? 
    There is nothing to export or import.
    The correct process to backup the iTunes library would be to copy the ENTIRE iTunes folder from the computer to the external drive.

  • How can I import HDV-Files from a CF-Card to Final cut Pro 5.1.4

    How can I import HDV-Files from a CF-Card (recorded with the Sony HVR Z 7E) to Final cut Pro Version 5.1.4 – is this possible at all?
    I managed to import the files to Premiere, but it was just a test. I am working at a very huge documentary project with Final cut Pro Version 5.1.4 thats why I would prefere not to change the program or the version.
    Simply exporting from Premiere back to final cut is also very complicated.
    Thanks for any ideas.

    First, copy the card to a hard drive connected to your fcp workstation.  I always back up all card based media at least 2 or three times.  All hard drive will eventually fail.  It's a question of when, not if.
    I'm not familiar with this particular camera, but examine the contents of the copied files and see if you can find any .mov files.  You can try importing these directly into fcp.
    If you don't, you can try something like clipwrap
    http://www.divergentmedia.com/clipwrap
    or
    Magic Bullet Grinder
    http://www.redgiantsoftware.com/
    But, I'd really advise upgrading to at least fcp6 or ideally fcp7 if you can find a copy.  HDV is a problematic format.  Although you can certainly work with it and it's a fcp approved format, converting your media to prores would make your life much easier.

  • How do I import a playlist from itunes to my iphone?

    How do I import a playlist from itunes to my imphone?

    iPhone User Guide (For iOS 5.1 Software)
    Open itunes, connect iphone, select what you want, sync.

Maybe you are looking for

  • An error occurred while sending the message

    I compose a email.When I click the send link ,an error occurs. The error page said "An error occurred while sending the message". Could anybody tell me what's wrong. Thanks.

  • How do I change my name on AirDrop?

    On my iPad, the airdrop name is Ryan (my dads name) and on my sisters iPad the airddrop name is my name. How do I change this please help!

  • Starting OEM page from plug-in

    We are trying to start an OEM page from a button click of our plug-in page. Is it possible? Could you please help?

  • ID problem while importing BPM

    I created integration process(BPM) in IR and activated successfully. there is no probelm in while activating.. it got activated successfully... but when Try to import this in ID .. i am not able to see my BPM in ID. Please help. Thanks, Bhupesh

  • How can I reinstall 10.6.8 in one pass?

    I need Rosetta, which limits me to 10.6.8. There are system glitches: Open Recent in many apps is confused. System-window sidebar has a mind of its own. Seem like I need to re-install 10.6.8. Is there a combined upgrade that collects everything since