怎么在Mac的Finder
访达中新建文本文件呢?
我的macOS的版本是Mojave,⌘ + 空格键 搜索Automator
打开自动操作
app

选取应用程序
,在左边的操作
–资源库
–使用工具
中选择运行AppleScript
,拖动到右边.
将下面代码插入到(* Your script goes here *)
下面,关闭Automator
,会提示你保存,保存到应用程序
文件夹,命名为新建文本文档
tell application "Finder"
set selection to make new file at (get insertion location)
end tell
打开finder
–应用程序
文件夹,按住⌘,拖动新建文本文档.app
到工具栏上,下次无论在那个文件夹下面,就可以直接点击图标新建文本文件了

网友评论