AppleScript에서 AirDrop 창 시작
4622 단어 MacOSXAppleScriptMac
기존의 Finder 윈도우가 사용되는 것이 싫은 것과 사이드바가 방해이므로, 신규 윈도우를 만들면서 사이드바를 자동으로 숨기도록 했다.
그러나 Finder가 활성화되기 때문에 Finder 창이 모두 맨 앞에 오는 문제가 있습니다.
AppleScript
-- Finder を活性化し、⌘Nで新規ウインドウを実行
tell application "Finder" to activate
tell application "System Events"
keystroke "n" using {command down}
end tell
-- Finder の最前面のウインドウのサイドバー幅を取得
tell application "Finder"
set sideWidth to get sidebar width of Finder window 1
-- もしサイドバー幅が0でなければ、⌥⌘Sでサイドバーを隠す
if sideWidth is not 0 then
tell application "System Events"
keystroke "s" using {command down, option down}
end tell
end if
-- ⇧⌘R で AirDrop を起動
tell application "System Events"
keystroke "r" using {command down, shift down}
end tell
end tell
AirDrop 정보 창에서 아이콘을 복사하여 Automator에서 내보낸 .app 아이콘에 붙여넣고 Dock에 추가합니다.
AppleScript를 쓴 것은 몇 년 만일 것이다…
Reference
이 문제에 관하여(AppleScript에서 AirDrop 창 시작), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/usagimaru/items/32e6c7105e9d3d65bd2a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)