macOS 有没有办法在弹出文件选择对话框的时候,使用 Finder 里面已经开启的窗口,而不是慢慢选择到目标窗口

2021-08-25 10:05:54 +08:00
 movq

现在已知的方法是使用 shift+command+G 来跳转

1630 次点击
所在节点    macOS
6 条回复
forelegance
2021-08-25 10:14:10 +08:00
不能,看 applescript 支持的参数,可以定义默认路径,但不能配置当前 finder 路径。
sayMore
2021-08-25 10:17:26 +08:00
可以把当前已经开启的窗口的文件拖进去,就能直接定位到了。
bao3
2021-08-25 10:21:35 +08:00
如楼上 2# 所说,你拖到弹出的对话框就行了。
newage126
2021-08-25 10:35:51 +08:00
Default Folder X 是你需要的
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
```
ooops
2021-08-26 03:45:15 +08:00
直接用已经开的窗口把文件拖进去呗

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/797846

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX