现在已知的方法是使用 shift+command+G 来跳转
1
forelegance 2021-08-25 10:14:10 +08:00
不能,看 applescript 支持的参数,可以定义默认路径,但不能配置当前 finder 路径。
|
2
sayMore 2021-08-25 10:17:26 +08:00 1
可以把当前已经开启的窗口的文件拖进去,就能直接定位到了。
|
3
bao3 2021-08-25 10:21:35 +08:00
如楼上 2# 所说,你拖到弹出的对话框就行了。
|
4
newage126 2021-08-25 10:35:51 +08:00
Default Folder X 是你需要的
|
5
minamike 2021-08-25 11:00:42 +08:00
AppleScript 绑定快捷键,又不是不能用.jpg
``` tell application "System Events" to set frontmostProcess to first process where it is frontmost tell application "Finder" if exists Finder window 1 then set currentDir to target of Finder window 1 as alias else set currentDir to desktop as alias end if end tell set the clipboard to POSIX path of currentDir tell application (path to frontmost application as text) to activate delay 0.1 tell application "System Events" keystroke "/" delay 0.1 keystroke "v" using command down keystroke return end tell ``` |
6
ooops 2021-08-26 03:45:15 +08:00 via iPhone
直接用已经开的窗口把文件拖进去呗
|