Quicksilver Import Text

Summary: Type text into 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. Type some or a URL text as the subject in Quicksilver, select the script as the action, and press Return. EagleFiler will create a new rich text file with that text. (If you prefer that EagleFiler create a plain text file, you can edit the script to say import plain text instead of import text.)

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

Script

using terms from application "Quicksilver"
    
on process text ThisClipping
        
try
            
tell application "EagleFiler"
                
repeat until (exists library document 1)
                    
delay 1
                
end repeat
                
tell library document 1
                    
import text ThisClipping
                
end tell
            
end tell
        
end try
    
end process text
end using terms from