Create TOC

2012년 4월 5일

OSX - AppleScript를 이용해서 Finder 열기

아래와 같은 스크립트를 이용해서 새 Finder 창을 열 수 있다.

activate application "Finder" --gives Finder focus
tell application "Finder"
	set new_finder to make new Finder window to alias ":"
	set the current view of new_finder to column view
	set the target of new_finder to the home
end tell