Keyword Question

I am trying to clean-up my library before iPhoto 09. I ran Duplicate Annihilator first and have been diligently adding Keywords. To track my progress I created a Smart Album with Keyword equal to None, so I could see any Photos I missed.
The issue I am having is there are photos showing up in the smart album that I have clearly added keywords to. They are not duplicates per se as I cleared those up with DA. Any ideas?
Thanks.

Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.
Regards
TD

Similar Messages

  • Quick keywording question

    I'm new to Mac's and Aperture, so this question probably looks stupid and it's easy to answer.
    I'm yet not quite familiar with the wording even though i read the key wording part in the manual and have tried to learn it. My main problem is as follows:
    I select for example 17 pictures of flowers, then on the key wording hud i enter a keyword "flowers" by typing it in. Only the first of the selected images get's the keyword others are left without. I would like to select images and type in a keyword that applies to all. My workaround has been to lift the keywords from that image and then use the tool to copy them one by one to images. There must be something that i missed in the manual or did not find in the menus.

    I think lots of people get a little confused with the Mac way of working, especially if they've come from Windows. In the Mac world, we're used to picking stuff up with the mouse, dragging it to where we want, and dropping it there. Windows does offer this to a degree, but not so much as it's ingrained in the way of working with Macs.
    micahblue is perfectly correct in saying you drag the keyword over the selected images, and drop it onto them. Keywords seem like a little bit of a hassle when you start using them, but managing a large library is a breeze when you can find what you want easily. (^ ^)

  • Quick keyword question...

    I am a surgeon who has been using Portfolio of late to manage my digital images. I love the ease with which this program allows the creation of keywords, i.e., highlight a group of photos and then simply type all the words that i would like to apply to them, patients name, type of procedure, etc. However, Portfolio is horrible when it comes to backing up and restoring libraries on different computers. Id like to migrate to Aperture, but wonder if keywording is as easy? If so, how does the process work? thanks in advance for what is probably too general a question, but thanks anyway!!
    best
    Y
    G5 Dual 2.0   Mac OS X (10.4.8)  

    Hello, Yale
    quote: "Id like to migrate to Aperture, but wonder if keywording is as easy? If so, how does the process work? "
    Keyword (add metadata) on import the selected photos you want keyworded and you can even use preset keywords (metadata) that you use often. Once in Aperture you can change any keywords on one photo or change many at once. Aperture is very flexible if you're into metadata (keywords)
    victor

  • Keyword questions from the newbie

    Would anyone mind helping me figure out if there are conventions for entering Keywords into pdf Metadata? I have been having a conversation on another forum about Keywords for images and there is some question in my mind as to whether I should use quotes around a term such as "plate of shrimp" or if I should just use Plate Shrimp. One poster said they were avoiding using spaces for some reason and that they use PlateShrimp.
    Anyway, am I correct in assuming that all this goes back to how google searches Metadata in pdf's and/or images??
    Does anyone know where to find some of the conventions or standards associated with this? For instance, doesn't google search the /content/ of the pdf and if so wouldn't a keyword have to be /different/ from one in the METADATA? Or ostensibly google would rank a keyword /higher/ and the other Maetadata in a pdf would be associated with Contact and/or Copyright info?
    I am a total newbie with this so I am trying to winnow things down here with a little help if possible. I've been able to find info on IPTC Metadata but my assumption is that this only relates to images.
    Thanks.

    greene77 wrote:
    1. Is there a "recent documents" on a Mac?
    Only under the programs you use like Pages.
    2. When I have a disc in the notebook and I pick up the computer is it normal for the disc to grind inside the unit? It sounds like a garbage disposal.
    This happens because you move the macbook and the disk is spinning. If you don't tilt it this usually is OK but tilting causes the noises your hearing and it is damaging the disk.
    3. What is the American flag in the bar at the top right of the desktop? It wasn't there yesterday.
    It is the input menu for special characters and keyboard viewer if both are turned on under system preferences. Look under International Input Menu.
    4. Can I run Final Cut Express on the Macbook without problems, or should I have gotten a Pro?
    Yes I use it and it works fine. Max out your RAM for the best results.

  • Static and final keyword questions

    Brief summary: I want to make the JButtons, JLabels, and JPanels public static final. Is that bad, and why? And what the heck is the Java system doing when it compiles and runs a program that does this? Is the code more efficient?
    More questions below.....
    I'm new to making GUI designs with Java. I am going to school and my teacher is making us do GUI interfaces in JAVA.
    Early on, I learned that constants are identifiers similar to variables except that they holda particular value for the duration of their existence. QUESTION ONE: what happens during run-time, how does JAVA handle this constant?
    I also learned that some methods may be invariant, as with a simple extension. These methods should be marked final. The subclass inherits both a madatory interface and a mandatory implementation. So I guess you use a final method when you want to model to a stric subtype relatinoship between two classes. All methods not marked final are fair game for re-implementation.
    Well, that's good and well. So then I started thinking about static. That's a keyword in Java and when used with a variable, it's shared among all instances of a class. There is only one copy of a static variable for all objects of a class. So then again, I noticed that the programs in my book that used final usually threw in the word static before it. Memory space for a static variable is established when the class that contains it is referenced for the first time in a program.
    Well, that too is great? Question 2: In my GUI programs, can I declare all the buttons (JButtons), labels (JLabels), panels (JPanels) as being final constant static?
    In the program I don't intend to change the type of button, or JPanel so why not make it a constant? As long as I'm doing it, why not make it static? WHAT IS ACTUALLY GOING ON THEN IN MY PROGRAM WHEN I DO THIS?
    Question 3: What goes on in JAVA when I make a method or function public static final. Is that what the Math class does? How is that handled during run-time? Is the code faster? Is it more efficient?
    Question 4: If I make a class final, that means a subclass cannot extend it? Or does it mean that a subclasss cannot change it? I know that if the function or method in the parent class was final, then the subclass inherits both a madatory interface and a mandatory implementation....So if the class is final, then what?

    You have a lot of questions..
    You make a method final if it should not be allowed for subclasses to override it.
    If you make a class final, you will not be able to subclass that class.
    A static method is a class method, i.e. you don't need to create an instance of the class to call the method.
    You can make any object and primitive final, but for objects, you are still able to modify what is inside the object (if there is anything you can and are allowed to modify), you just can't change the final reference to point to another object.
    When you make a variable final, you sometimes make them static as well if they should work like constants. Because there is no reason that every instance of the class has their own copy of constants.
    If you make everything static, why even bother to work with object-oriented programming. It gives you no reason to make instances of your classes. You should try not to make static variables and methods when there is no need for it. Just because you start from a static main method, it doesn't mean it is necessary to make all variables and methods static.
    Don't think so much about performance issues as long as you are still learning java. When you make a method final, it is possible for a compiler to inline that method from where you call the method, but you will hardly gain much in performance with that. In most cases it's better to optimize the code you have created yourself, e.g. look at the code you run inside loops and see if you can optimize that.

  • Extensis Portfolio 8.1.1 and Lightroom - keywords question

    Hi, I've imported images to Lightroom that have had keywords applied using Portfolio (an Extensis product). Once imported into Lightroom, however, Lightroom does not show these keywords. It only shows those keywords applied using Photoshop CS2. Is there a way, short of reentering all that data, to get Lightroom to recognize these Portfolio keywords?
    Thanks for any help,
    DLMST

    Got a little mixed up between threads. Portfolio is scriptable, so it would be possible to generate xmp sidecars which Lightroom would then be able to read.
    John

  • Advanced Search / Keyword Question

    Is it possible to do an advanced search to include images which contain a certain keyword but also ignore another ? I want to create a smart album of images which contain the keywords "a" and "b", but leave out those images that might also contain "c".
    Paul

    Is it possible to do an advanced search to include
    images which contain a certain keyword but also
    ignore another ? I want to create a smart album of
    images which contain the keywords "a" and "b", but
    leave out those images that might also contain "c".
    Paul
    In the Query diagoue, if you go to the "+" in the upper right corner you can add new search criteria - you can add an IPTC search, select that a keyword has to conain some values, or add another IPTC search that excludes other values (does not contain).
    So you could add what keywords you are interested in, then add an IPTC search and tell it the search cannot include images that have keywords that match a certain string.

  • Keyword question, added to meta data?

    I saw a thread about keywords not showing up in converted files meta data. I believe the solution was to make sure that auto-update xmp was set. So does this mean that to have keywords associated with my files outside of LR that I will need to use an xmp sidecar file as well? So if I send files to my stock agency, or to a client who needs the keywords I will need to send the converted file and be sure that the xmp file is sent as well? If this is the case, has anyone who does this encountered problems with their submitted photos/xmp files not being handled properly by their clients/agencies?
    Perhaps I am not understanding. Any clarification would be appreciated. Thanks

    This shouldn't be an issue.
    XMP only needs to be updated when you want the keywords to go into your originals (i.e. the same files that are in your library).
    Keywords and other metadata are always inserted into to exported files (JPEG, TIFF, DNG, etc), except if you check the "minimize metadata" option in the Export dialog box.

  • Keywording Questions

    Having returned from a long trip, I am now relying heavily on LR for the first time since 1.1. Gotta say, it flies on my Mac Pro. And I was very happy at how easily it transferred images from my laptop. However, I'm locking horns with the keywording interface, and wondering if I'm missing something.
    Candidly, keywording has seemed problematic to me in every version since the first beta. The Painter is fine for stamping large blocks of images. But once I apply the broad strokes and want to dash quickly through a couple thousand images, applying discrete keywords to two or three at a time, the process becomes painful - literally. My forearm aches from dragging single images onto Keyword Tags. But I don't know what else to do. The Painter demands too many keystrokes for fine-grained work. As do the Keyword Sets.
    I never encountered this problem in Bridge because you could select images and simply click a checkbox to apply a keyword from the list. MUCH faster. Can anyone who keywords extensively recommend a better approach than I am using in LR?
    I'm also wondering how hard it would be to implement the Bridge method in LR. Is it techinically feasible to convert that left-most column of the Keyword Tags panel (where the checkmarks appear) so that a click would apply the keyword instead of gathering images, while still allowing a click to the right of the disclosure triangles to cough up search results? Seems like it would make keywording much, much faster and easier.

    The way I do it after getting back from a vacation is to go one day at a time... (that way if I quit keywording, I can remember where I left off at, as no images past they day will have detailed keywords.)
    Or I'll make a collection called "to keyword" and remove them from the collection as I finish keywording them.
    I start with the first image I want to apply a keyoword to (Say first image is of ME) I'll just ctl-click click all the images I want to keyword with "David" then apply it to all of them at once. Then I'll go through with the next keyword I want to apply. I keep repeating that for the entire set of photos I will be keywording.
    I'm curious as to other's solutions.
    My opinion is that keywording does need some help in several areas, and hope the LR team is working on this.

  • Lightroom Keywording question...

    I am pretty comfortable with Lightroom, but there is one scenario that can be frustrating.
    I am keywording a new batch of photos. I am on a photo and assign 5 keywords. I then right arrow to the next photo and I want to "dupe" all 5 keywords from the previous photo (e.g. copy/paste)...
    There doesn't seem to be an easy way (button or keyboard shortcut)...
    Any suggestions?
    Right now I either:
    * Click all the keywords in recent keyword list (a pain)
    * Go "back" and copy / paste
    Any suggestions would be grateful.

    There are many ways. One is to use the keyword spray can (should be on the bottom toolbar), the other main way is to copy metadata (from the metadata menU, the shortcut is different in windows and Mac OS, so check the shortcut there), select keywords as what to copy and paste the metadata over your other image.
    Edit: Oh I didn't notice you were using the zoom view, yeah there it is a little harder.

  • Keyword questions - CS4 Bridge

    It is possible to print out pictures with their keywords somehow attached? (Either next to the picture or as type on the picture)
    It is possible to add a specific keyword to multiple pictures that do not have the same keywords to begin with?
    (Like adding 'breakfast' to many different food pictures with different keywords.)
    Thanks.

    If you have the suite or InDesign, the contact sheet for InDesign script (Cs4) will do print pictures with metadata as a caption (www.creativescripting.net)
    You can create a metadata template and apply it to a selection of pictures.
    Bob

  • Meta keyword question

    Hi, after some research studing the source code of other websites I have noticed they have diffirent meta description and keywords on diffirent pages throught their site, when i try this my meta content is locked and can only be modified through the template, which applies the changes to all the pages and keeps all teh meta details the same.  Is there any way to modify my meta content for each page.
    Regards Mark
    http://www.helpvid.net

    The template markup was a little different in early versions of DW... but I guess you could have a try on a backup copy of your site to see if it works... just add the editable region that I pasted into my last reply and see if it works  :-)
    Actually the following is the top section of my main template page - so you can see how it works on my pages:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <!-- Design, Graphics and Source Code Copyright (C) 2005,
    Nadia Perre - PerreLink Design  http://www.perrelink.com.au
    All rights reserved. -->
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <meta http-equiv="imagetoolbar" content="false">
    <link href="../css/aps.css" rel="stylesheet" type="text/css">
    <link href="../css/print.css" rel="stylesheet" type="text/css" media="print">
    <link rel="stylesheet" href="../css/lightbox.css" type="text/css" media="screen">
    <script type="text/javascript" src="../js/prototype.js"></script>
    <script type="text/javascript" src="../js/scriptaculous.js?load=effects,builder"></script>
    <script type="text/javascript" src="../js/lightbox.js"></script>
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>company name here</title>
    <meta name="description" content="">
    <!-- TemplateEndEditable -->
    The section is red is what you need.
    I'm pretty sure that most versions have an editable region as default around the <title>
    If I remember correctly that was created using CS3 but the code will be the same for CS4...  will be different if using DWMX though  :-)

  • Aperture Adds Strange Keywords

    Hello,
    I have imported about 20 iPhoto libraries into Aperture 3.  Many of these have keywords assigned in iPhoto and they appear correctly as keywords in Aperture.  Aperture adds other keywords such as iPhoto Original, etc. which I understand.  However, there are cases in which Aperture has also added one of its Project titles to a photo's keyword list (these were not keywords in the iPhoto images).  If I open the Aperture keyword list these are in it but  they are not in the Filter HUD keyword list.  What is going on here?  I am wondering if the Aperture library is corrupted and I need to restore from the Vault backup which I think was made before I noticed this problem.  The iPhoto libraries seem to work fine but could they be a problem (Aperture uses iPhoto Event titles as Project titles)?
    Thanks for any suggestions.
    Mike

    Hello Leonie,
    Thank you for your response.
    Yes, I did mean Keyword HUD, sorry.  If I examine the Keyword HUD and the Keyword Filter with all photos in the library selected, the oddball added keywords appear in the HUD but not the filter.
    Thanks for the tip on hierarchical  keyword categories.  I tried that with Library Manager but when they were shared among all my libraries the structure I set up was lost.  I plan to use this feature in Aperture once my library is complete.
    However, the strange keyword question may be academic since I discovered after my post that I had the following warnings from Console which I interpret to mean serious problems with the library:
    One Console Warning like this (last one on the list):
    12/6/11 4:21:16 PM          Aperture[1095]          An instance 0x134a66970 of class RKVersion was deallocated while key value observers were still registered with it. Observation info was leaked, and may even become mistakenly attached to some other object. Set a breakpoint on NSKVODeallocateBreak to stop here in the debugger. Here's the current observation info:
    <NSKeyValueObservationInfo 0x12b9ed890> (
    <NSKeyValueObservance 0x13a0d7110: Observer: 0x13a0d72d0, Key path: isReadOnly, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1399a9510>
    <NSKeyValueObservance 0x13a0d94d0: Observer: 0x13a0d88e0, Key path: isReadOnly, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1399a9510>
    <NSKeyValueObservance 0x13a0da720: Observer: 0x13a0da8a0, Key path: isReadOnly, Options: <New: NO, Old: NO, Prior: NO> Context: 0x0, Property: 0x1399a9510>
    Many Console Warnings like this (should have saved more of them):
    12/6/11 1:41:32 PM          ScreenSaverEngine[1132]          Couldn't load image for path: /Volumes/OWC On-The-Go (SATA)/Aperture Library 11:30:11/Aperture Library1.aplibrary/Previews/2011/11/29/20111129-101150/kqu+Y3vXTLulk88738Y6ew/I MG_0517.JPG.jpg
    I wonder if "mistakenly attached" has anything to do with my keyword problem.  I found IMG_0517.JPG.jpg (is  ".JPG.jpg" a valid extension?) and found 5 in Aperture, all of which ware taken at different places and different dates.  The keywords were all OK. Four had the extension .JPG and one had no extension, just IMG_0517.
    My plan now is to restore from my Vault copy and check for the odd keywords it it.  If they are present I guess I will have to trash the library and start over.
    Sorry for such a long post.
    I welcome any observations on this.
    Mike
    Mike

  • Keywording any better in 1.0?

    Compared to the checklist keywording in Bridge, I've found Lightroom's drag-and-drop system, uhm, a drag.
    In Bridge, you can create categories of keywords -- People, Places, Trees, etc. -- and add specific keywords within those categories -- Fred, London, Birch. You can access the list anytime, select multiple photos and simply tick a checkbox beside each keyword to add it to your selects. Fast, clean, easy. No tugging little words across the screen.
    I had hoped, even assumed, Adobe would incorporate this feature into 1.0 because it's so superior (in my opinion) to dragging. But I've seen no mention of it yet. Anyone know?

    Here is a keywording questions that it seems those chatting about this subject will know the answer to. Where do the keywords one assigns in Lightroom reside. In Bridge they are written into the metadata of the image file itself. So that when one keywords a file in Bridge, the keywords will be recognized by other programs that read metadata keywords. But there is so much talk about Lightroom being a database driven program that I am afraid that perhaps those keywords just reside in a Lightroom database and nowhere else. For example, if I keyword a folder full of files in Lightroom, and then open that same folder in Bridge, will the keywords still be there? Or will I have to use Lightroom forever to access them. Any light on this subject will be greatly appreciated. Thanks
    Lito Tejada F

  • Acrobat 8 Standard Frequent Crashing / Not Updating

    Hi. My Adobe Acrobat 8 Standard v 8.1.6 is having some problems. I do a lot of work in Acrobat and I can normally deal with the occasional hiccups, such as restarting Acrobat, but lately things have regressed considerably. I've run the Repair tool but it crashes. I've also tried updating but that crashes too. When I say it crashes I mean it says "...has encountered an error and will exit." I've also considered reinstalling Acrobat but the issue of not having the original CD plus not having registered, looms.
    So I'm a little stuck. Please advise on what options are available. (sorry my keywords question mark is no longer working). With there being problems I may be inclined to restall Windows, but again, without having registered I am wondering what my options are. Thanks in advance.
    RD

    No plugins or profiles. I do access pdfs on network shares frequently using inhouse applications & Internet Explorer.

Maybe you are looking for

  • What cable do I need to connect to my stereo reciever ?

    What specific cable do I need to connect my Mac Pro to my 90's Denon Stereo reciever ? The back of my Mac Pro has an optical port. Any links to specific cables would be really helpful; if possible. The back of my reciver looks like this. http://farm2

  • How can I display the last items of a region from other Oracle Portal page?

    I want to display de last five items (f.e.) included in a region (with attributes created) from other page. I've tried using custom search, but it also shows the attribute names, and I want show the attribute values (I don´t know how can I format the

  • Urgent- Please help with image overlaying

    Hi, Please,please, can someone help me with an imaging issue and show me what I'm doing wrong. I'm a swing beginner and I'm trying to create a application for a board game. Currently I'm using JLabel components to try and create jpeg pieces over a JP

  • HT1766 I cant find my music files that were on my Iphone

    How can I find my music files. I had over 300 songs and now their gone only ones left are 3 songs i had purchased in itunes.  The music was my own files from my cd collections. THey are not on my computer and they arent on my iphone any more/

  • Accessing discoverer viewer over internet

    URL's host name is changed when i am clicking to expand report link for work sheet selection. I have installed Oracle 10g AS and discoverer and trying to access work sheets over internet using discoverer viewer.