@
HanningWu 下面给个简单的 AppleScript 示例,根据自己的需求修改就行了。
Alfred 直接给在 Workflows 中一个快捷键 trigger 加一个 NSAppleScript 的 action 就行了(需要 Powerpack )。
免费的方法就是 Automator 做一个 Service ,设置为 receives files in Finder ,添加一个「 Open Finder Items 」,然后底下选择「 Open With...」,然后在系统偏好设置->键盘->快捷键-> Services 中设置快捷键。
tell application "Finder"
if (selection ≠ {}) then
set _file to (selection as alias)
tell application appName
activate
open _file
end tell
end if
end tell