Macro to Open A New Finder Window To the Same Directory As the Front Window

Suppose I have a Finder Window opened to a particular directory, like Documents > My Files.

Is it possible to create a macro where I press a certain combination of keys and a new Finder window opens on the same directory?

This'll do it. Pop it in an Execute an Applescript action.

tell application "Finder"
	try
		target of window 1
		make new Finder window to result
	on error
		make new Finder window to home
	end try
end tell

2 Likes

Brilliant, THANKS!!!!

1 Like