Quicksilver Import File

Summary: Select a file in Quicksilver and import it into EagleFiler.
Requires: EagleFiler, Quicksilver
Install Location: ~/Library/Application Support/Quicksilver/Actions/
Last Modified: 2010-11-27

Description

Save the compiled script as Send to EagleFiler.scpt. Select a file as the subject in Quicksilver, select the script as the action, and press Return. EagleFiler will import the file into the frontmost library. This is like using Quicksilver’s Open With… action, but it takes fewer steps and you don’t have to wait for Quicksilver to determine which applications can open the file.

Installation Instructions · Download in Compiled Format · Download in Text Format

Script

on open _files
    
tell application "EagleFiler"
        
repeat until (exists library document 1)
            
delay 1
        
end repeat
        
tell library document 1
            
import files _files
        
end tell
    
end tell
end open