3
4

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.

Finder項目をキーボードショートカットでラベル付けする

Last updated at Posted at 2013-09-01

Finder のラベル機能は便利ですが、コンテキストメニューからマウスポイントすることを強いられるため、大量のファイルを分類したり、ささっとファイルをマーキングしたりする用途には、不向きな導線です。

ショートカットでラベリングできたら便利かと思い、スクリプトを書いてみました。
Spark.app で適当なショートカットを割りあてるとワンストロークでラベリングできて爽快です。

changeFinderLabel.scpt
on run
	tell application "Finder"
		repeat with curItem in (selection as list)
			set label index of curItem to ((label index of curItem) + 1) mod 8
		end repeat
	end tell
end run

ラベルなしの状態から、実行する度に順繰り色が変わります。

3
4
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
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?