Batch Set From

Summary: Sets the From of the selected records.
Requires: EagleFiler
Install Location: ~/Library/Scripts/Applications/EagleFiler/

Description

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

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

Last Modified: 2007-11-27

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.