Searching photo keywords with spotlight

Hi - I have been adding keywords to my photos - through Photoshop. Spotlight does search these keywords. The problem is, I also add "Author" data to the photos and I want to be able to search just by keyword - is there any way to narrow the search, or is there a third-party application that will do this. I can search within Photoshop's File Browse, but I am not crazy about the interface.
Thanks

Assuming you're using the ⌘F interface in Finder - you can select Keywords as a specific criteria option - click on Kind or Last Modified to change. If you give it a few seconds, it generates a list of all the keywords in the index allowing you to pick them from the drop down menu.
Entering the term in the standard search oval, or on the menubar Spotlight offers some ability to narrow the search but its limited.

Similar Messages

  • Searching for scripts with Spotlight

    I decided to ask this question on this forum because AppleScripters are the most likely to search for scripts with Spotlight.
    *First, here’s what seems to be the normal behavior of Spotlight:*
    If I open the folder “/Users/pierre/Documents/Loisirs/Informatique/Utilisation avancée/AppleScript”, type ⌘F and enter “Kind is Other” and “script” as the search criterion, I get 89 items in the +Searching “AppleScript”+ window.
    On the other hand, if I replace the previous criterion with “File extension is scpt”, I get 88 items in the +Searching “AppleScript”+ window, which is normal since one of my scripts is a script bundle, whose extension is “scptd”.
    Next, if I open my home folder, type ⌘F again and enter “Kind is Other” and “script” as the search criterion, I get 110 items in the +Searching “pierre”+ window, which again is normal since many of my scripts are outside of my “AppleScript” folder.
    *Now, here’s what looks like a bug:*
    If I replace the previous criterion with “File extension is scpt” in my home folder, I get only 3 items (instead of 109) in the +Searching “pierre”+ window, which obviously is nonsense.
    I have rebuilt permissions and reindexed Spotlight, without any difference.
    Any explanation?

    Hi Pierre
    Not a explanation, but a possible solution, try some of these ideas:::
    1) Restart Mac
    2) Rebuild the spot light index manually (I no you said you have done this, this is just a path to follow):
    a) launch terminal
    b) type this sudo mdutil -E /
    c) type in your admin password when prompted
    d) rebuilding index should commence (could take a while)
    3) clear the spot light caches and prefs:
    a) download "Yasu" from here and install
    http://jimmitchelldesign.com/yasu/
    b) enable "Reset System Prefs", "Clear System font Cache", "Clear local font cache", "Clear user font cache"
    click ok
    c) Restart Mac
    4) Kill the SystemUIServer:
    a) launch activity monitor, find process "SystemUIServer" highlight then click button quit process
    hope this helps
    Budgie

  • In CQ 5.4 how to read search trends(keywords) with in specific date (like last week, 30 days...)?

    I have a requirement to display popular search key words with in specific date range. Like search key words searched in last week/ in last 30days/in 90 days.
    how to get date range searched keywords from Search Trends?? is there any other way to get these??

    Issue was due to a syntax error. Case closed.
    Thanks!
    -OS

  • Searching work servers with Spotlight

    Having issues with Spotlight, it seems to be working fine locally but cannot retrieve the files and folders required from any servers that we have in our office, which is frustrating when looking for older files on our Archive etc...
    Is there a preference that I need to click on to allow this?
    Any help would be appreciated,
    Thanks.
    G5 Apple Mac   Mac OS X (10.4.8)  

    First of all, Tiger's Spotlight technology is not intended for Window servers. (See below)
    Spotlight Support for Network Homes
    "Perform a Spotlight search on network-based Home directories in addition to searching local hard drives."
    Leopard will expand to search on servers running Mac OS X Leopard Server. http://www.apple.com/macosx/leopard/spotlight.html
    "The Spotlight store retains information that the plug-ins extract in two separate indexes: one for metadata and the other for content. This provides important performance benefits, because Spotlight doesn’t waste time looking through its massive content index unless specifically requested. Each index is created on a per-volume basis, which means each disk or partition carries its own set of indexes for the information on that volume.
    Spotlight works with most locally mounted volumes that can be read and written to, including FireWire and USB/ flash drives. Some volumes, such as Windows-formatted drives, are not indexed automatically. You can change this easily by opening the Info window for the volume in the Finder." http://images.apple.com/macosx/pdf/MacOSXSpotlightTB.pdf
    For sure if you are searching network drives, use Command-f and make sure that the drive (volume) you are searching in is shared (connected) and selected. Keep in mind that the volume you are searching in may not be indexible, e.g., CDs, but can be searched using the (old) Find command.

  • Search Inside Catalogs With Spotlight on Mac

    My wife is a pro-photographer and a Lightroom user; I'm tech support. We like to use small catalogs because they are easier to manage. The problem that arises is files become lost amongst the many catalogs with no way to search across catalogs for a given photo. To remedy the situation, I wrote a Spotlight importer that allows the Mac to index filenames inside LR catalogs. Here is a quick screenshot of me searching for the filename "HPDE" and Spotlight locating the catalog referencing this filename.
    I packaged up the Importer for install. You can read the technical details in my blog post or jump right to the download package. If you have any questions, feel free to follow up here, however I'd prefer that you add a comment to the blog post. Thanks!

    How to download
    Flour milling

  • Help cleaning up a script to search in Finder with Spotlight?

    I don't know much AppleScript at all, but managed to cobble together a script (invoked with Alfred) that opens a Finder window, sets the size, view options etc. and searches for Photoshop documents with the term passed from Alfred.
    As it's cobbled together I'm guessing there are much cleaner, efficient, and more elegant ways of doing this. Any help cleaning it up would be greatly appreciated. Here's the script:
    -- set q to "wobbly jelly" -- Test search
    on alfred_script(q)
              set theSearch to q
              tell application "Finder"
      activate
      open computer container
      -- Set the folder view
                        tell Finder window 1
                                  set the bounds to {630, 150, (630 + 1300), (150 + 1100)}
                                  set toolbar visible to true
                                  set the sidebar width to 180
                        end tell
              end tell
              tell application "System Events"
      -- Focus to the search field
      keystroke "f" using {command down, option down}
                        delay 0.4
      -- Type the search   
                        keystroke "kind:photoshop " & theSearch
              end tell
      -- Arrange by…
              menu_click({"Finder", "View", "Arrange By", "Date Modified"})
      -- Set to Icon View
              tell application "Finder"
                        set current view of Finder window 1 to icon view
                        tell icon view options of Finder window 1
                                  set icon size to 128
                                  set shows icon preview to true
                                  set shows item info to true
                        end tell
              end tell
    end alfred_script
    -- `menu_click`, by Jacob Rus, September 2006
    -- Accepts a list of form: `{"Finder", "View", "Arrange By", "Date"}`
    -- Execute the specified menu item. In this case, assuming the Finder
    -- is the active application, arranging the frontmost folder by date.
    on menu_click(mList)
              local appName, topMenu, r
      -- Validate our input
              if mList's length < 3 then error "Menu list is not long enough"
      -- Set these variables for clarity and brevity later on
              set {appName, topMenu} to (items 1 through 2 of mList)
              set r to (items 3 through (mList's length) of mList)
      -- This overly-long line calls the menu_recurse function with
      -- two arguments: r, and a reference to the top-level menu
              tell application "System Events" to my menu_click_recurse(r, ((process appName)'s ¬
                        (menu bar 1)'s (menu bar item topMenu)'s (menu topMenu)))
    end menu_click
    on menu_click_recurse(mList, parentObject)
              local f, r
      -- `f` = first item, `r` = rest of items
              set f to item 1 of mList
              if mList's length > 1 then set r to (items 2 through (mList's length) of mList)
      -- either actually click the menu item, or recurse again
              tell application "System Events"
                        if mList's length is 1 then
      click parentObject's menu item f
                        else
                                  my menu_click_recurse(r, (parentObject's (menu item f)'s (menu f)))
                        end if
              end tell
    end menu_click_recurse

    Mainly just grouping the separate cobbles together, although there is a shortcut that gets rid of all that System Events stuff for the find parameter.  Note that in Mavericks the icon view won't immediately update - changes will be applied when the window target changes.
    on alfred_script(theSearch)
      tell application "Finder"
        «event aevtspot» "kind:photoshop " & theSearch -- shhh - don't tell anyone...
        tell Finder window 1 -- Set the folder view
          set the bounds to {630, 150, (630 + 1300), (150 + 1100)}
          set toolbar visible to true
          set the sidebar width to 180
          set current view to icon view -- set the icon view
          tell its icon view options -- view options may not immediately update in Mavericks
            set icon size to 128
            set shows icon preview to true
            set shows item info to true
          end tell
        end tell
      end tell
      menu_click({"Finder", "View", "Arrange By", "Date Modified"}) -- Arrange by...
    end alfred_script

  • How to search Photos by keyword from Spotlight ?

    I there, I have iPhoto '09 (version 8.1.2) and MAC OS 10.5.8. I'm trying to search by keywords from Spotlight but it does not work for me.
    What can I do to get it to work or is not possible ?
    Thanks!
    Adrian

    Misio
    Wow, your earlier post went quick!
    No, no one missed the calendar tool like you do.
    Why?
    Because they use the Calendar tool.
    Click on the magnifying glass in the search window (note the little up/down arrows beside it) and select the calendar tool...
    Try it, you'll like it.
    Regards
    TD

  • Find fotos from iPhoto 7.1.5 with keywords from Spotlight

    Hello, I've attached keywords to all my fotos in iPhoto. Now I would like to find them when using Spotlight. Spotlight doesn't find a single photo on keywords - how do i fix this?

    Don;t search with Spotlight.
    As spotlight works with files and the Finder, and the iPhoto Library is not parseable via the Finder, Spotight does not read the keywords.
    You can search iPhoto keywords through the search box in the iPhoto Window or through a Media Browser. You can create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser.
    Regards
    TD

  • How to search photos by title and or keywords on iPhoto for iOS

    Maybe I'm not I'm not seeing things wright but I can't find any possibilitie to search photos by name, title, keyword with iPhoto (1.0.1) on my iPad 2 (5.1.1)
    How can I Search? I don't want to beleive that's not possible...
    Miguel

    Rob,
    as Frank Caggiano said. There is not really any Apple-provided application on the iPad that will support a full-fledged photo database like the Mac-versions of Aperture or iPhoto. Even the IOS app iPhoto is nothing like the Mac version of iPhoto. The iPad version is not a photo database but a tool for editing, sharing, and viewing photos - the iPhoto Help is saying:
    With iPhoto for iOS, you have everything you need to view, edit, and share your photos on your iPad, iPhone, or iPod touch (with iOS 7).
    You can organize your photos in iPhoto IOS in a limited way by tagging them, so that they will apear in albums: What are albums?
    To tag them with flags or keywords see: Flag, tag, hide photos
    Considering the limited space on IOS devices, the designers probably did not expect anybody to try to store so many photos on an iPad that it would be necessary to search for them other than using the predefined Views (Moments, Places) in the Photos.app, or iPhoto's albums. And any library organization you are doing in the Photos.app or iPhoto will not sync back to your computer.
    -- Léonie

  • Searching Photos in Spotlight for in iOS4

    I have a ton of photos on my iPhone 4 but would like to be able to include my photo keywords or photo events in spotlight. Is there now way to do this or is there an app that someone knows about that allows for this?
    Cheers!

    There is no option in the spotlight for searching photos (you'd know this if you had actually checked). As for an app, the only way that the app would let you do this, is if you loaded the photos into the APP, not the iPhone itself, through the photos app.

  • Browsing photos with Spotlight?

    Hello everybody!
    When I search some photos with spotlight is there any way to browse with the spotlight "slideshow" those folders spotlight find?
    I mean, I have photos of cars in a folder named "cars". When I search for car photos I have the searchword "cars" and I find that folder (cars), is there now any way to see those photos inside that cars-folder with the spotlight? Or should all the files be somehow named "cars"... I hope you got my point.
    Thanks in advance!
    -pd
      Mac OS X (10.4.3)  

    I have quite a few things that show up with the search term "flowers"--some image files (which you can see in slideshow by pressing the play button in the Spotlight window view), and a couple of folders. The easiest way to view a slideshow of the items in one of the folders is to double click the the folder in the Spotlight window, which opens that folder. Then select all the items, and control-click on one, and select "Slideshow" from the contextual menu.
    Francine
    Schwieder

  • Text search returns results with some keywords, but not others

    This pertains to a tours website for Turkey. I've sucessfully
    set up a search form, and results page which returns results when
    multiple keywords are entered. Everything is working well, except
    when certain keywords are used. For example, the table column being
    searched for is called long_itinerary, so if anyone is interested
    in a certain site or city, it's bound to be in the long itinerary
    somewhere.
    Here's the problem, by example: When someone searches with
    the keywords Antalya, Konya, Ankara, or Adana, for example, results
    are returned from the database, and those keywords are in each
    returned tour's long itinerary.
    But certain keywords return nothing, even when they're in
    practically all of the tours, in the long_itinerary column. For
    example, Istanbul, Ephesus, and Izmir, Kusadasi and Pergamum return
    no results, even though they're there. I've gone through all of the
    most likely keywords, and these are the offenders. If, for example,
    I search with "Istanbul Ankara," I get results with tours including
    Ankara (and Istanbul, but only because the word "Ankara" is in the
    itinerary).
    First I made sure the Charset values were the same on the
    search form page and the results page. Still had the problem. Next,
    I went into the database itself, and copied the word "Istanbul"
    directly from the long_itinerary column of the database, and pasted
    it into the search function's text field, and searched again. Same
    problem--no results returned.
    I can't see any difference between the keywords which work
    correctly, and those which don't, what baffles me is that even when
    I copy a keyword directly from the database and paste it in the
    search text field, it returns no results!
    Well, I'm baffled! Any ideas what might cause this?

    Hmm -- one of my customers is a turkish building company
    (Kusadasi BTW), and when *they* add some contents to the DB,
    they´ll be entering turkish chars. It´s in particular the
    turkish "I" which is pretty different, and this is when a search
    for keywords containing a western "I" will fail.
    Could that be the problem in your case ?

  • Problems with Spotlight searching of shared volumes

    According to: http://www.apple.com/macosx/features/300.html#spotlight, I should be able to "...search any connected Mac with Personal File Sharing enabled or a file server that’s sharing its files."
    It doesn't specify what "file server", so I presume it means Spotlight should be able to search any mounted shared volume (assuming, of course, that indexing has been enabled).
    I have a NAS device that I want to be able to search with Spotlight. According to mdutil, the volume is enabled for indexing, but I don't see any results when I search under "Shared" in Finder via Cmd+F. (I checked, and there's no .Spotlight folders on the volume.)
    From what I recall, under Tiger you could manually specify a network volume to index, but if you dismounted the volume, you'd have to re-enable indexing on next mount. This worked for other file systems (such as Fat32 & NTFS), as well as for HFS+ drives.
    According to mdutil in Leopard, the volume is still enabled for indexing even across dismounts. The NAS drive is not HFS+ formatted, but uses XFS.
    I've tried deleting the index, to no avail.
    Has anyone successfully used Spotlight to search mounted volumes on volumes not shared via another Mac?
    Am I missing something?

    You have not missed anything.... Leopard promises but does NOT deliver.
    I use an AFP server with Bonjour enabled. And NO NO NO Spotlight search is possible on this network volume...
    This is outrageous and FALSE information....
    Oh and - that Leopard is Sporting 300 new features is false info too.... Not even the "What is New in Leopard" says anything about 300 features.. But it sounds great doesn't it....

  • I bought CS6 extended yesterday (yes i did). I have CS4 and lots of photo's in bridge (tagged with keywords). What is the best way to get my photos from bridge cs4 to cs6? Is there a guideline how to go about so I don't loose any of my photos/keywords? Wh

    I bought CS6 extended yesterday (yes i did). I have CS4 and lots of photo's in bridge (tagged with keywords). What is the best way to get my photos from bridge cs4 to cs6? Is there a guideline how to go about: so I don't loose any of my photos/keywords? Who can help?

    The Bridge General Discussion can give you the specifics of transferring your information over to Bridge CS6.

  • Searching for Flash Photo Gallery with numbered navigation menu.

    I'm looking for a photo gallery with a numbered navigation
    menu. I've seen this gallery on several flash web pages. Is this
    type of photo gallery a template that comes with flash? Has anyone
    come across a tutorial for a photo gallery similar to the link
    below.
    http://www.rockcreeksm.com/index.php/work/portfolio/

    i made this one:
    http://www.goldbergphotography.com/
    but there are quite a few simpler photogalleries. use google
    to search for some tutorials or templates.

Maybe you are looking for

  • Getting schema validation working in Eclipse with Coherence 3.7.1.0

    Just wondered if anyone had got schema validation to work in Eclipse (3.5 - Galileo) for Coherence 3.7.1.0? The Coherence developer docs show that you should add sections like this: <pof-config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xm

  • How to embed PDF document to a view in WDJ?

    Hi, experts, I have a PDF document for helping user to use a software product. I want to embed it to a view through interactiveform in web dynpro for java so that other users may read the PDF document. I don't how to implement it? Do you give me some

  • Customer classification Marked For deletion

    Hi Friends, I am having one issue wrt to triggering the Idoc. My requirement is: Whenever classification of the customer is removed in XD02 then IDOCS must trigger for the systems for which classifications are removed with customer MFD flag as ‘X”. I

  • Overriding doSelect method in EO

    I have attempted to override the doSelect method in my EO then create a VO based on that EO and execute queries on the VO. My doSelect does not execute. I've attached my code from EO below... can someone tell me how to get the doSelect method to exec

  • PS CS5 Trial Version Crashing

    I've been using the trial version for 15 days without any problem.  Now when I hit shft, commd, s to save it closes.  Tried re-install.  Tried turning off openGL.  Here's the log: Process:         Adobe Photoshop CS5 [2412] Path:            /Applicat