我想在某个文件夹中打开 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