Finder のウィンドウを開いて特定のフォルダを開き、フォーカスを検索ボックスに設定して、すぐに入力を開始できるようにしたいと考えています。これは私がこれまでに持っているスクリプトです (わかりました、ウィンドウではなく新しいファインダーのタブを totalfinder に開きます)。
ヒントはありますか?
ありがとうございました。
property the_path : "/Users/solignani/Google Drive/c-avv19/doc di lavoro/pratiche/"
set the_folder to (POSIX file the_path) as alias
delay 0.5 -- necessario per evitare che i tasti vengano premuti assieme
tell application "Finder"
activate
if window 1 exists then
tell application "System Events"
keystroke "t" using {command down} -- apre un nuovo pannello
end tell
set target of window 1 to the_folder
else
open the_folder
end if
end tell