Note: OS X 10.11 El Capitan에서의 방법이 업데이트 되었습니다.
아.. Mac Lion에서 동작하는 Apple Script를 찾느라 힘이 들어 공유 합니다. (일단 한글 자료가 없어서..)
일단, finder > 응용 프로그램 > Apple Script 편집기를 실행 해서 다음의 코드를 넣습니다.
주의할 것은, Apple Script를 사용하기 위해서는 "시스템 설정" > "손쉬운 사용" 의 하단에 "보조 장비에 대한 접근 활성화"가 체크되어 있어야 합니다.
tell application "Safari" to activate
tell application "System Events"
tell process "Safari"
click menu item "새로운 윈도우" of menu "파일" of menu bar 1
click menu item "개인정보 보호 브라우징" of menu "Safari" of menu bar 1
end tell
end tell
OS X 10.11 El Capitan 에서는 다음과 같이.. (https://discussions.apple.com/message/29223652#29223652 참조)
tell application "Safari"
activate
tell application "System Events"
tell process "Safari"
keystroke "N" using {shift down, command down}
end tell
end tell
end tell
tell application "Safari" to activate
tell application "System Events"
tell process "Safari"
click menu item "New Window" of menu "File" of menu bar 1
click menu item "Private Browsing" of menu "Safari" of menu bar 1
end tell
end tell
작성 후, compile을 누르고 "실행"을 클릭해서 동작을 확인 합니다. 잘 동작하면 저장(Record/녹화가 아니라 상단 메뉴바에서 저장하라는 의미입니다.)을 하시고, 저장시에 application으로 저장하시면 됩니다.