Bulk Print

Summary: Prints all of the selected files.
Requires: EagleFiler
Install Location: ~/Library/Scripts/Applications/EagleFiler/

Description

Select some files in the records list, run the script, and they’ll be printed at once.

Download in Compiled Format · Download in Text Format

Script

tell application "EagleFiler"
    
set _records to selected records of browser window 1
    
set _files to {}
    
repeat with _record in _records
        
set _file to _record's file
        
tell application "Finder"
            
print _file
            
delay 5 -- otherwise Preview will skip next file
        
end tell
    
end repeat
end tell

Last Modified: 2008-11-28

Running the Script

You can use AppleScript Editor (AppleScript Utility prior to Mac OS X 10.6) to enable Mac OS X’s built-in Script menu. To run the script, just select it from the menu. FastScripts provides a similar menu that supports keyboard shortcuts and other features.