Batch Set From

Summary: Sets the From of the selected records.
Requires: EagleFiler
Install Location: ~/Library/Scripts/Applications/EagleFiler/
Last Modified: 2019-10-02

Description

Lets you change the From name of multiple selected records at once.

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

Script

tell application "EagleFiler"
    
display dialog "Enter new From:" default answer ""
    
set _newFrom to text returned of the result
    
set _records to selected records of browser window 1
    
repeat with _record in _records
        
set _record's from name to _newFrom
    
end repeat
end tell