Filename to Title

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

Description

If you had saved a Web archive with a descriptive filename and then imported it into EagleFiler, the title of the record would have been set to the title of the Web page. This script lets you set the title to the filename (and remain linked to it).

You can also do this by using the Batch Change window to make the title blank.

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

Script

tell application "EagleFiler"
    
set theRecords to selected records of browser window 1
    
repeat with theRecord in theRecords
        
set theRecord's title to ""
    
end repeat
end tell