Macアプリを作成しましたが、インストール時にFinderのお気に入りセクションにショートカットを追加したいと思います。私は他のアプリが同じことを達成しているのを見ています(AirDropなど)。どうすればよいですか?
質問する
905 次
1 に答える
0
AppleScript で実行できますが、これは最善の方法ではありません (cmd+t を別の関数に変更すると、これは失敗します)。
tell application "Finder"
activate
-- Select the path you want on the sidebar in the Finder
select folder "Preferences" of folder "Library" of (path to home folder)
tell application "System Events"
-- Command-T adds the Documents Folder to the sidebar
keystroke "t" using command down
end tell
end tell
また、 LSSharedFileListを使用してアイテムを追加することもできます。
于 2013-01-11T17:39:34.640 に答える