Bulk Print

Summary: Prints all of the selected files.
Requires: EagleFiler
Install Location: ~/Library/Scripts/Applications/EagleFiler/
Last Modified: 2019-10-02

Description

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

Installation Instructions · 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