Group Records
Summary: Creates a new folder and moves the selected records into it.
Requires: EagleFiler
Install Location: ~/Library/Scripts/Applications/EagleFiler/
Last Modified: 2019-10-02
Description
This script groups the selected records by creating a new folder and moving them into it. It then selects the new folder.
Installation Instructions · Download in Compiled Format · Download in Text Format
Script
tell application "EagleFiler"
set _records to selected records of browser window 1
tell library document 1
set _parent to container of item 1 of _records
set _folder to add folder name "Group" container _parent
repeat with _record in _records
set container of _record to _folder
end repeat
tell browser window 1
set selected records to {_folder}
end tell
end tell
end tell