Sorry if this is a repeat question. Is there a way to use keyboard Maestro to close all finder windows?
Thanks
Sorry if this is a repeat question. Is there a way to use keyboard Maestro to close all finder windows?
Thanks
Not Keyboard Maestro specific:
While in the Finder, type: Command-Option-W ( β-β₯-w ) and all of the open Finder windows should close.
Hey Todd,
Itβs nearly always better to script these sorts of things when possible, rather than depend upon brute-forcing the user-interface.
Execute AppleScript Action:
tell application "Finder"
close every window
end tell
Easy enough.
β
Best Regards,
Chris