April 12, 2009
Duplicate Finder Window
Open a new Finder Window with current Folder
- Open ScriptEditor.app
- Paste the following script
- Save as application (Name it with “duplicateFinder.app”)
- drag the app onto the toolbar of Finder
- click it whenever you want to duplicate current Finder window
tell application "Finder" get the exists of the front Finder window if the (exists of the front Finder window) is true then try set newWindow to target of front window set oldView to current view of front window make new Finder window to newWindow set current view of front window to oldView end try else try make new Finder window to alias ":" set the current view of the front Finder window to column view end try end if end tell
From: http://www.fosk.it/how-to-open-a-new-finder-window-from-current-location.html
Comments(0)