新的Notes应用程序很棒,但如何在不切换到Notes应用程序的情况下创建新笔记?
Reminders.app也是如此。
新的Notes应用程序很棒,但如何在不切换到Notes应用程序的情况下创建新笔记?
Reminders.app也是如此。
Answers:
对于 笔记 ,
发射 的Automator - > 服务
添加动作“ 运行AppleScript “
更换 (* Your script goes here *)
有:
tell application "Notes" to activate
tell application "System Events"
click menu item "Notes" of ((process "Notes")'s (menu bar 1)'s ¬
(menu bar item "Window")'s (menu "Window"))
click menu item "New Note" of ((process "Notes")'s (menu bar 1)'s ¬
(menu bar item "File")'s (menu "File"))
end tell
无论Notes应用程序是最小化还是隐藏,这都将起作用。
然后,按照上述过程创建全局快捷方式。
希望这可以帮助 :)
tell application "Notes"
activate
end tell
tell application "System Events"
tell application process "Notes"
click menu item "New note" of menu "File" of menu bar item "File" of menu bar 1
end tell
end tell