Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Latest commit

 

History

History
13 lines (12 loc) · 400 Bytes

File metadata and controls

13 lines (12 loc) · 400 Bytes

Save it as Quick Look.scpt, and then run it with a file selected in the first pane. If you use it on multiple files, be aware that Quicklook will only show you the files in one Finder window at a time. Code:

on open these_items
    tell application "Finder"
        activate
        select these_items
        tell application "System Events" to key code 49
    end tell
end open