Is there a way to set up shortcuts to go to a certain (smart) folder (say unfilled, or files flagged red)? For example, I have a shortcut / macro pad and it would be nice if I could program it to open eaglefiler with a certain Library, and then go to Unfiled. Thanks JS
You could write a shortcut that executes an AppleScript such as:
tell application "EagleFiler"
activate
end tell
tell application "System Events"
tell application process "EagleFiler"
set _goMenu to menu 1 of menu bar item "Go" of menu bar 1
set _menuItem to menu item "Unfiled" of _goMenu
click _menuItem
end tell
end tell
Thanks Michael, I was hoping for something simpler - but this will work.