Filename to Title
Summary: Sets the titles of the selected records to their filenames.
Requires: EagleFiler
Install Location: ~/Library/Scripts/Applications/EagleFiler/
Last Modified: 2025-05-24
Description
If you had saved a Web archive with a descriptive filename and then imported it into EagleFiler, the title of the EagleFiler record would have been set to the title of the Web page. Also, sometimes PDF files have internal titles that are meaningless. This script lets you set the EagleFiler 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