Skip to main content

Spotlight - How to search your Mac

In this first installment of our 5 part series, we will be discussing Spotlight. Spotlight for Macintosh is designed to help you find ANYTHING in your Mac. Think of it as Google for your computer.

How does it work?

Spotlight searches your Mac in the background and continually updates an 'index' of any changes or new files it finds. This index can then be used to instantly, as you type, search your Mac for whatever your search terms are. For a technical discussion, please read Wikipedia's article.

How can it help me?

Spotlight is integrated into Mac OS X and can be used from your desktop, any finder window and using keyboard shortcuts.
Look at the top right of your Menu Bar and you will see an icon that looks like a magnifying glass. Click on it and a small search field will come up. Type in any word or phrase. Your Mac will instantly display a list of files and folders sorted by type that match your criteria. Note the picture here.

Apple Spotlight

Here the term "Hello" was entered. You can see there are several hits. The first, "Show All" will, if selected, show all results in a new Finder window. Then, there is the "Top Hit." This is a guess as to what you may have been looking for. You can train spotlight too. Suppose what you were looking for was a text file that contains Hello in the body of the text. If you contiually select that file, Spotlight will set it high in the search priority. Pretty cool, huh?

Refined Searches.

From any Finder widow you can also search for what you need. See the picture below:


Apple Spotlight WindowHere, you can see that the search term "Hello" has been refined to show only image files last opened before 7/11/08. If you wish to save the search for later use, you can! Simply click the "Save" button (located below the search field) and a search folder will show up under the "Search For" in the left pane under "Places."

Adding Keywords to Your Files.

Suppose you have a picture of you favorite pet and you imported it from you camera as "Spot.jpeg" but you don't really want to just type in "spot" and have every picture of a Spot or Spotted or whatever show up. What can you do? Control-click on the file and in the Spotlight info pane type in some keywords that can be useful in finding the file later. For example: "playing with Spot on the beach the summer of 2007". Now, you have several terms you can search. "Spot beach summer" should narrow your search to this file!


Spotlight KeywordsUse your imagination! Remember, any term you frequently search for can be saved. So have fun.

Keyboard Shortcuts.

Here are some shortcuts to get your searches:

  • Command+Space: This will open the Spotlight search pane.
  • Option+Command+Space: Will open and Spotlight window for refined searches.
How do you use Spotlight? I'd love to hear your comments!

Comments

Unknown said…
What a useful tool! I like your clear explanations! Look forward to more!
Bob Kuivanen said…
Thanks! So much more useful than the search in Windows Vista! And much more intuitive.
I found that in order to search Vista or XP it is just easier to install 3rd party software such as Google Desktop or Copernic Desktop.
Anonymous said…
i like Spotlight's built in calculator... when i don't feel like opening Calculator.app and its too hard to use the Dashboard Widget, i just use Spotlight: (wish i could do a screenshot)

5*5=25
25/5=5
25+5=30
25-5=20

this is awesome for quick calculations, you literally get the answer as you type... lightning fast!
Bob Kuivanen said…
Great tip!
I'll post a screen shot.

Popular posts from this blog

Do You Need to Defragment a Mac’s Hard Drive?

--> Do You Need to Defragment a Mac's Hard Drive? About Focus on Macs In my mailbag this week, I found a couple of questions about defragmenting a Mac's hard drive. This question usually comes from new Mac users, or individuals who switch to the Mac from the Windows environment, where disk defragmentation utilities abound. Some individuals want to know which third-party disk defragmentation app they should use, or wonder why there is no defrag tool in OS X. Courtesy of Apple OS X does have disk defragmentation capabilities, but they're built into the system rather than a separate tool. Since OS X 10.2, Apple has included automatic defragmentation in the Mac OS. In essence, the Mac OS has built-in safeguards that attempt to prevent file fragmentation from occurring; it's also able to repair fragmentation, should it occur. This means that for the average Mac user, there really is no reason to worry about disk defragmentation, at least not as ...

Learn To Code

Even if just to get a better understanding of how computers work or learning how to customize your browsing experience, knowing the basics of coding opens ones eyes to possibilities once only known by a few.  Learn To Code Planet Cocoa If learning to program is even a minor goal for you,  Code Year (via  Brent Simmons ) might be just the encouragement you need. They promise to email you on a weekly basis with coding lessons to help you achieve your goal. I'm one of those computer programmers who downplays the difficulty of the profession, because "if I can do it, anybody can do it!" On the other hand, I have faced challenges that made me question whether I'm vaguely qualified for the job. What it boils down to is that programming is both incredibly simple and impossibly hard, like so many important things in life. There was a time when nobody knew how to write literary prose. The geniuses who invented it shared their special tool with a ...

Tips: Delete duplicate entries in "Open With..." dialog in Finder

Duplicates!!! When you control+click (or right click if you have enabled that option) on Mountain Lion, and there seems to be several duplicate applications listed and/or apps you no longer use, here is a Terminal shell script that will fix that.  Just copy and paste the code below in a Terminal window. /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain user (Terminal can be found using Launchpad or Spotlight) After pasting, hit the Return key and allow time to run, then type "killAll Finder" without the quotes, and Return.  This will rebuild the "Open With..." menu.   If you do not see an immediate effect on the lists, restart your Mac.   Should be no need to restart. (Thanks, JK) Duplicates and old apps gone! If you wish, you can make a Service that will do it using Automator as well: Open Automator (Launch Pad or Applications folder) Create...