【回复贴】Mac如何使用快捷指令新建空白文档?
懒得批爆
创作者俱乐部成员
问题贴:https://bbs.wps.cn/topic/48696
📢 | 很多人不太熟悉Mac系统的优势,不过这个帖子可以教你如何自定义操作而且不借助任意第三方工具,以下操作在Windows上可能需要冒着病毒、木马、恶意代码的风险安装数个第三方小工具才能实现一个按钮实现新建任意格式文档。 Windows有风险,使用需谨慎 |
- Command + 空格 : 搜索Automator
自动操作-新建文稿-应用程序-资源库-实用工具
将【运行AppleScript】拖入右侧,并用以下代码覆盖原代码。
onrun {finput, parameters}
setuserResonsetotext returnedof (display dialog "输入新建的文本文件名" default answer "README.md" buttons {"取消", "确认"} default button "确认")
tellapplication "Finder"
ifexists Finder window 1 then
make new file at (targetoffrontFinder windowastext) with properties {name:userResonse}
else
make new file at (path to desktop) with properties {name:userResonse}
endif
endtell
endrun
setuserResonsetotext returnedof (display dialog "输入新建的文本文件名" default answer "README.md" buttons {"取消", "确认"} default button "确认")
tellapplication "Finder"
ifexists Finder window 1 then
make new file at (targetoffrontFinder windowastext) with properties {name:userResonse}
else
make new file at (path to desktop) with properties {name:userResonse}
endif
endtell
endrun
- Command + s:保存
名字:随意输入
位置:应用程序
- 修改图标
command + c 复制一个icns图标到剪切板;
在应用程序中,选中目标应用,按 command+i 快速显示简介,单击选中图标;
command + v 覆盖原图标。
- 添加快捷方式
在程序中找到后拖进程序坞
- 运行/新建文档
打开任意文件夹,点击程序坞中的新建应用程序图表,弹出的对话框中输入新建的文件名+后缀,确认即可创建新文档,
如果没有打开文件夹,则新建文档默认放在桌面上
📢 | 换句话说就是在当前激活的文件夹下点击这个新建应用程序,就可以自定义新建任意格式的文件/文档 |