0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AppleScript で AirDrop ウインドウを起動する

Last updated at Posted at 2013-11-17

いちいち Finder に戻って AirDrop ウインドウを開くのがたるいので、Automator や AppleScript 実行ファイルにして Dock から起動できるようにした。

既存の 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 に追加。
c1.png
c2.png


AppleScript を書いたのは何年ぶりだろう……。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?