PSE7: Find all photos with any caption?

I'm running PSE7.
I have a sub-set of my images selected via a tag.
Now I want to find all of images in that set that have any caption at all.
So I do a Find/By Caption or Note.
Now in the next dialog box is there some way that I can enter a wild card or something
that will find any image that has anything in it at all?
Thanks for any help!

Ouch!!
Well, I understand the solution you described.
Let me back up a bit. And describe what I'm trying to accomplish.
I take a bunch of pictures and I bring them in Organizer.
I go through them quickly adding 'notes' to them.
Who the people are, where this is, etc. etc.
I just add them in the Caption because that is a single click in Organizer.
Very easy.
But I don't add captions to every image.
Later I go back and I want to add Text to these images in Editor.
Basically, I want to permanently include my 'notes' with these images.
So anytime someone views or prints the jpeg they are going to see my notes.
So my original question was how I can select that group of captioned images
in Organizer. Then I was going to Ctrl-i and get them all into Editor.
But maybe there is another way for me to select just those images?
In Organizer, it seems the only way I can 'see' the captions is when the image
is in 'Single Photo View'. Which is ok. But as far as I can tell, when I am in
Single Photo View I can't 'Select' that image. Maybe I'm missing something.
Anyway, if I could Select that image, then I would just move through the rest
of my images in Organizer. When I saw another captioned one I would want
to do the equivalent of Ctrl-click. Adding that image to the other images that
I have selected.
Well, that's the story. Is there another way I can skin this cat?
Thanks!

Similar Messages

  • Pse 7 cannot find all photos with a specific tag

    I keep my photos in a series of 'nested' subfolders by year and by topic and I have found that PSE7 will only find the first photo with a specific tag, for instance searching for one of our dogs by tag name will find the first time we saved a photo of her. It will not find her in the subsequent 7 years of folders/photos.  It is v irritating and I thought that I could do this search previously. Help please.  Thanks.

    Thanks, but this didn't work; PSE still finds the first photo with the specific search tag.

  • IPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution

    iPhoto frustrating error..The volume for "Df23.JPG" cannot be found. It prompts for all photos with this issue rather than offering an option to ignore. I can find the images in spotlight but not in Find Photo. Does anyone have a solution?

    Unless you have the source files that were on the TC or Windows machine you will have to start over with a new library as follows:
    Start over from scratch with new library
    Start over with a new library and import the Originals (iPhoto 09 and earlier) or the Masters (iPhoto 11) folder from your original library as follows:
    1.  Move the existing library folder to the desktop.
    2. Open the library package like this.
    Click to view full size
    3. Launch iPhoto and, when asked, select the option to create a new library.
    4. Drag the Masters (iPhoto 11) folder from the iPhoto Library on the desktop into the open iPhoto window.
    Click to view full size
    This will create a new library with the same Events as the original library but will not keep the metadata, albums, books slideshows and other projects.  Your original library will remain intact for further attempts at fixes is so desired.
    OT

  • How to find all photos that have NO faces, as opposed to UNNAMED faces?

    I find that iPhoto often misses faces entirely, especially if the face is wearing sunglasses or a hat or both.  Sometimes it is rather inexplicable that it has missed a face, as the face seems obvious.
    If you use the smart album method to find all "unnamed" faces, the photos have at least one unnamed face identified.  You can then add any missed faces to those photos.
    But what about photos in which iPhoto has failed to identify the existence of even one face?  Or for that matter, if I want to see only pictures of landscapes or objects that have no people?  Does anyone have a method for finding all photos that have no faces in them at all?
    For me, the idea is to find all unidentified faces and add them.  But as I pointed out above, there may be other uses for this.
    Any ideas, anyone?
    Thanks

    Awesome !!! Thank you very much. I did not realize you could use JavaScript to code against iTunes ...
    I don't know if you have written any of these yourself, but do you know how to maybe create a smart playlist with this information via script? If not, no big deal. At least I know have something which I can use, I will just have to run it every so often.
    Thanks again for pointing me to that site!

  • How do I find all pictures with no (empty) keyword ?

    I have decided to import all my pictures into LightRoom.
    A lot of my older pictures are not registered with any keywords :(
    - only with IPTC location information.
    My plan is to systematic go through all my pictures and add relevant keywords to all pictures - so my old pictures become as searchable as my newest pictures.
    Some of my old pictures has keywords some has not.
    How do I in Lightroom - find all pictures with no keywords?
    I have tried to use the Find tool - but don't see any options to search for "Empty/missing" keywords.
    Also I would like to find all pictures with few keywords and in step II add additional keywords to these pictures.
    Any ideas on how to make a find all pictures where number of keywords is less than X inside or outside LightRoom.
    Henrik Bach
    Denmark

    > I also did think of the SQL idea.
    > If I find a way of doing this I will repost my findings.
    Well, being a tech geek, I found this challenge kind of irresistible,
    and I'm happy to report I have a solution for you.
    STEP 1
    First, make a copy of your "Lightroom Database.lrdb" file (we'll work
    off the copy to be safe)
    STEP 2
    Next, you need to be able to browse the database. The database is in
    SQLite3 format. I tried installiing an SQLite3 ODBC driver and accessing
    it through MS Access 2003. While Access was able to see all of the
    tables in the database, every time I tried to link to one I got:
    "Reserved error (-7748); there is no message for this error"
    I found a few tips for this but wasn't able to work around it and get it
    to work. Which is a shame, since Access would be the easiest way for
    browsing and querying tables.
    Instead I found an open source tool called SQLite Database Browser.
    http://sourceforge.net/project/showfiles.php?group_id=87946&package_id=91778&release_id=41 4746
    I used the Windows version. There appears to be a version for MacOSX on
    PowerPC. It doesn't look like there is a version for Intel based Macs
    (though if you know how, you could always try downloading the source and
    compiling it yourself).
    STEP 3
    After you install the browser, open it up, choose "Open Database" and
    select the COPY of the lightroom database we made in step 1
    STEP 4
    go to the Execute SQL tab and issue the following command
    SELECT A.idx_filename, count(C.name)
    FROM Adobe_imageFiles A, AGLibraryTagImage B, AGLibraryTag C
    WHERE A.image=B.image AND B.tag=C.id_local AND C.kindName='AgKeywordTagKind'
    GROUP BY A.idx_filename
    HAVING count(C.name) <= 3
    That will give you all images with 3 or fewer keywords applied.
    Of course, theres no guarantee that this wont break in future versions.
    Now an explanation of the data.
    Adobe_imageFiles - contains data about image files:
    1) idx_filename is the filename
    2) absolutePath is the full file path
    3) image is a unique ID for the image which you can cross reference in
    other image related tables
    AGLibraryTag - contains info about "tags" applied to images:
    1) id_local is a unique ID for this "tag", which you can use to cross
    reference in other tag tables
    2) kindName is the kind of tag you are looking at. Available values
    appear to be:
    AgCaptionTagKind
    AgCollectionTagKind
    AgCopyrightTagKind
    AgEnumeratedMetadataTagKind
    AgFolderTagKind
    AgImportTagKind
    AgKeywordTagKind
    AgMissingFileTagKind
    AgQuickCollectionTagKind
    AgSpecialContentOwningTagKind
    AgTempImagesTagKind
    3) name is the value for that tag (the collection name, the keyword, etc)
    AGLibraryTagImage - Use this to connect the images and tags tables

  • I have a new Nikon D750 sitting on my desk and can't edit the photos with any adobe product?  We are in full wedding season and am a little frustrated.  Photo mechanics opens them right up to download them.   I am using the Nikon software to convert them

    I have a new Nikon D750 sitting on my desk and can't edit the photos with any adobe product?  We are in full wedding season and am a little frustrated.  Photo mechanics opens them right up to download them.   I am using the Nikon software to convert them into tiffs.  when is the camera raw update coming out.  I am not the only photographer with this issue check out all the chatter about it.

    This happens every single time a new camera comes out from one of the two big camera makers. Nikon and Canon do not send preproduction units to Adobe, so Adobe has to go out and buy a D750 or whatever from the store to test and profile it before they can update Lightroom. They can't get one earlier than you and I can. The profiling is quite an extensive operation. Other camera makers do send preproduction units, use dng, or do the profiling in-house and there you often get support right from release. If camera makers would finally embrace an open raw format such as dng, this whole problem would be gone but both Canon and Nikon seem to think they live in an upside-down world where their clients only use their software.
    Usually the dead period only lasts a few weeks but it is frustrating nevertheless. My only advice is to not buy a new camera at the day of release and expect to have third parties to support it. You definitely should not be buying these cameras right away if your business depends on it. Aperture, Capture One, etc. have the exact same problem. No third party (read non-Nikon in this case) will support the camera from the release date. Some are quicker than other adding support. Adobe is somewhere in the middle of the pack in this respect. Nobody outside of Adobe knows when an update comes out. Could be tomorrow, could be a few more weeks or a month. They might jump straight to Lightroom 6 and never add direct support to LR 5. Sometimes they will first bring out a beta version of dng converter that will convert the new camera's nef files to dng, which will work fine in the current Lightroom before updating Lightroom itself.

  • Iphone 4 will not sync all photos with my mac

    Iphone 4 will not sync all photos with my mac

    I have the same problem as well.....this is the message the kept popping up when I try to sync that photos that i ave already imported to my iPhotos, the fastest way to sync ALL of the photos is to drag the photos on to the desktop, rename the files and then import them AGAIN.
    This only happened recently, can anyone help???

  • Finding all photos not in any album

    Hello,
    I am a user of PE10.
    I imported about 7000 photographs and am organizing them into albums. To ensure I assign all photos to at least one album I would like to display all unassigned photos, i.e. photos not in any album yet, so that I can assign the to albums.
    Right now I have to click "Show All" and scroll through 7000 pictures to find ones I have not assigned yet :-( very tedious.
    Is there anyway to show only unassigned pgotographs?
    TIA,
    Herman

      In thumbnail view click Show All or launch the Organizer from scratch.
    Then click the Find menu and choose the criteria you need.
    Click to view

  • Preview and Finder showing photos with the right rotation, once imported to iPhoto its lost

    Hi,
    I'm geting nuts with this issue.
    For my own camera all works fine. 90° rotated pics show up in Finder, Preview and iPhoto correctly. Landscape is landscape, portrait is portrait.
    Now I got photos shared (using Dropbox) from a friends camera. Finder and Preview also show landscape and portraits correctly rotated.
    But, once I import them (by drag&drop from the Finder) into iPhoto, all portrait photos are landscape now and need to be rotated 90°. This is the same for Thumbnails, full screen and even slideshow.
    The only difference when importing those photos is, for my own I use the import out of iPhoto (by plugging the SD directly to the Mac), the other photos are imported from the Finder with drag&drop.
    BTW, the rotation information for all photos are correct in Preview (1 for normal photos, 8 or 6 for 90° rotated).
    So what is the problem here? I'm going nuts.
    Thanks in advance.
    Monty

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2. Download it from the App Store to reinstall It's on your Purchases List there.
    For older versions that have been installed from Disk you'll need these additional steps:
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 or later they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.

  • How do I get LR4 to find all photos in catalog after replacing hard drive on mac? question marks all

    I had the hard drive replaced on my mac.  I did a restore from back up drive to my new hard drive.  First LR4 couldn't find the catalog so I pointed to it. Then I opened lightroom 4 and it cannot see ANY of my photos. I don't want to link each folder full of photos it will take hours. Isn't there another way to do this so it finds them all at once?  Photos are still located in the same location on the new hard drive after restore.  Nothing changed except the hard drive.  Thank you!

    I did find something in another post that suggests to go to the top most file in the structure and right click and click on "find missing folder" then you point to that folder and it will find all subfolders and photos.   This really worked well for most of the photos but I have I must have moved at some point that I will have to relocate.  This is good information whether you are working with a Mac or a PC. I think it would work for either.  I hope this helps someone else out there.

  • How do I find all photos that can be '"reverted to original"? Help please!

    Hi. I hope that someone can help me with this!
    I am trying to go through my iPhoto Library of about 1000 photos and find all of the photos that have the option to be "reverted to original", ie. I have made changes to them. I realise that I could go through them one by one, but I am trying to avoid that!
    I have realised recently that I should duplicate a photo before changing it, so that I leave the original untouched. However this doesn't help me with all of the old ones that I DIDN'T duplicate.
    Is there an Applescript or a method of finding all of the old photos that I am looking for?
    Thanks so much in advance for any help,
    Fleur

    I don't think it can be done from within iPhoto but there's a way you can do it from outside. First download and launch QPict. Then do the following;
    1 - open your iPhoto Library folder and type Command-F.
    2 - in the search window create these two search criteria:
    a - Kind is Folder
    b - Name contains Original
    3 - In the search results window click on the size column to separate the empty folders from those with files in them.
    4 - select all of the folder that are not empty and drag into the open window of QPict.
    That will open the original files in QPict so you can view them there and compare to those in iPhoto. Just remember do not move any of those folders out of the iPhoto Library folder. Just move them into the open window of QPict.
    G4 DP-1G, 1G RAM, 22 Display, 2-80G HD, QT 7.0.3P   Mac OS X (10.4.3)   Canon S400, i850 & LIDE 50, Epson R200, 2G Nano

  • Finding all photos that include a particular person whether their face appears or not

    Faces is a great way to locate all photos where someone's face appears.  But what about photos that the person is in, but their face is not (e.g., the photo was taken from behind the person)?  What's the best way to tag photos so that I'll be able to have all photos that contain Person X together, whether their face is in the photo or not?  (Note: I know I could use Faces to add a face to the back of someone's head - that would get that picture to appear in Faces for that person, but would likely mess up the face recognition for that person).
    My current thought is to use keywords to tag those photos with the names of people who appear in photos without their face showing.  I could then create a Smart Album that includes all photos that contain a Face or Keyword for Person X.  Is there a better way to accomplish this?

    (Note: I know I could use Faces to add a face to the back of someone's head - that would get that picture to appear in Faces for that person, but would likely mess up the face recognition for that person).
    That will not mess up the face recognition. iPhoto will only use the faces that have been automatically found by iPhoto to learn the parameters for the recognition of the person. So you can include any part of the person to get the photot in the Faces stack on the cork board.
    My current thought is to use keywords to tag those photos with the names of people who appear in photos without their face showing.  I could then create a Smart Album that includes all photos that contain a Face or Keyword for Person X.  Is there a better way to accomplish this?
    That is fine, but does not give you access by using the Faces view.

  • Finding all clips with a specific effect applied? (CS6)

    I'm just wrapping up a long (2-hour) multi-cam edit and applied the warp stabilizer effect on several clips in the project. As I was skimming the video marking chapters, I discovered some of the clips with that effect had the blue "Analyzing (Step 1)" bar across the clip. Not sure why it didn't complete the analysis and stabilization on those clips originally, but I reran the analysis/stabilization effect and those clips are clean now.
    However, I'm worried I might have missed other instances of the "blue bar" in my skimming. Is there a way to search and find all clips in my timeline that I applied the warp stabilizer effect to so I can check them all?
    Thanks.
    roorider

    Not exactly.
    Any clips with an effect applied have a purple line through them.  But you'll have to click the clip to see which effects are used.

  • Filter all photos with flash light ...

    Hi,
    how can I filter all photos that were made with a flash light?
    I only can find ISO or aperture options in the filter pane.
    Can I extend the filter pane by own filter options?
    Thanks
    Konrad

    The Filter Pane, at least in CS3, is limited as to how you can arrange your photos by the topics listed.
    If you want to list all the pictures you shot with flash you will have to use the Find function (ctrl F) and set the critera boexs to Flash, exists, and Fired.  Have not tired this but should work.
    You can save this as a collection if you want to refer to it again.

  • I move all photos to a new external hard drive.  Now all folders have a question mark in them.  How do I find ALL PHOTOS at one time instead of having to find each picture. I have about 30,000 photos. Using  Mac. LR5

    I have set up a new external hard drive and Im trying redirect LR to the new hard drive. I have over 30,000 photos and Im trying to see to see if there is a way to all photos located without having to go thru each folder at a time

    http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm
    See Figure 4

Maybe you are looking for

  • What directory are the RPM files in before installing Oracle?

    Hello I am getting ready to install Oracle9i and one of the RPM files is missing so I downloaded it and will copy it to CD then to the hard drive. The question is: 1) After I copy the RPM file to CD what directory do I copy the RPM file onto on the h

  • Need to Print Screen the Front Panel

    Hey guys, as the subject says, I need to capture the front panel of the Vi every time it runs (without using alt-printscreen or any other applications). Can I do this using LabVIEW 8? Thanks!

  • DB2 Sender Item Naming Issue

    I have a call to a DB2 system with a JMS sender communication channel.  The issue I am having is that when it returns a record set, there are two items on that set that have the same name. An example of the output XML would be like this: <ns:...> <ro

  • Amtlib.dll not found

    Hello everyone I  purchased adobe flash cs5.5 student version, It worked well initially, but few days ago I rececieved this error message when opening flash "this application has failed to start because amtlib.dll was not found. reinstall the applica

  • Vista Business not showing as valid OS for ordering Windows 7

    Around July 6 there was at least one thread that mentioned when trying to order windows 7 upgrade for Pavilion Elite e9150t (product NY810AV) with Vista Business factory installed, the only current operating system in the dropdown is Vista Home Premi