open .
AppleScript를 사용하여 새 탭을 열 수는 있지만 Finder에서 새 탭을 열 수는 없습니다 . 새 탭에서 현재 열려있는 Finder보기 를 어떻게 복제합니까 (매버릭스)?
tell application "Finder"
activate
set t to target of Finder window 1
set toolbar visible of window 1 to true
end tell
tell application "System Events"
keystroke "t" using command down
end tell
tell application "Finder"
set target of Finder window 1 to t
end tell
또는 http://macscripter.net/viewtopic.php?id=41624에서
set docs_path to (path to documents folder) as string
set Sat_folder to docs_path & "Sat:"
set ABC_folder to (Sat_folder & "ABC:") as alias
tell application "Finder"
activate
open Sat_folder
end tell
tell application "System Events" to keystroke "t" using command down
tell application "Finder"
set target of front window to ABC_folder
end tell
open
그 순간을 처리 할 수 없다고 생각 합니다.