Skip to main content

Quicklook - "what's in that file?"

Quicklook - look at file content without opening a program.

New with Mac OS X Leopard is a program called Quicklook. This time saving utility enables a user to view the contents of a file without having to open the program used to edit it. For example, say you have a PDF document and want to quickly review its contents. Normally one would have to open Preview in order to see it. Now with Quicklook, one can simply touch the spacebar and the file 'opens' on screen instantly. You can scroll, view in full screen and even move on to the next file without having to open any other program.

Accessing Quicklook is easy. In any finder window simply higlight the file and touch the
spacebar. Alternatively, just click on the Quicklook icon. (It looks like an eye)

Quicklook will open image files, text, PDF, spreadsheets, documents and even movies!
Below is a quick video showing Quicklook in action.

There are plugins available that allow Quicklook to work with folders and other supported file types. Quicklook along with Spotlight can help you find information in your Mac quickly boosting your productivity immensely!

Comments

Unknown said…
Very cool I did not realize i could do that! Thanks!
Bob Kuivanen said…
Glad you find it useful!
Anonymous said…
Thanks for the post :) also check out www.QLPlugins.com

the BetterZip plugin lets you see the content of a zipped file, VERY useful. it saves time from having to unzip, look thru it, then trash the unzipped folder.
Bob Kuivanen said…
Great tip, Alex! I like to use a plug-in that shows the contents of folders too.

Popular posts from this blog

Calculate Age or Years Elapsed in an Apple Numbers Sheet

Often it is useful to show a person's age or years elapsed since a start date.  For example: Hire Date: 4/1/2012 - Years of service: 1.5 Here's a formula for Numbers that will do the trick: =IF(ISBLANK(cellReference),"",DATEDIF( cellReference ,TODAY(),"D")/365.2425) Replace the cellReference with the actual cell reference. i.e.: (A1)  So here's the breakdown: =IF(ISBLANK(cellReference),""  --- this checks to see if there is a start date in your referenced cell.  For example say your spreadsheet has a cell (A1) that holds a date of birth, but it is not yet referenced, this will result in an empty string. (Blank cell) Otherwise, it calculates the years:  DATEDIF( cellReference ,TODAY(),"D")/365.2425) DATEDIF compares two dates. The first date is your cell reference i.e.: (A1) The second is the current date according to your computer, iOS device: TODAY()  returning the Day -  "D" Then the difference is divi...