如何创建全局键盘快捷方式以在Notes.app或Reminders.app中创建新笔记?


Answers:


2

提醒

您可以使用。创建服务 的Automator

  1. 打开 Automator.app
  2. 选择 服务
  3. 对于提醒: 添加动作 询问文字 提示新的待办事项
  4. 添加动作 新提醒项目
  5. 节省服务
  6. 创建快捷方式:

    系统偏好设置→键盘→键盘快捷键→服务→文本

enter image description here

笔记

请参阅Mohamad Elwan的答案


这仍然适合你吗?
yunas

1

对于 笔记

发射 的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应用程序是最小化还是隐藏,这都将起作用。

然后,按照上述过程创建全局快捷方式。

希望这可以帮助 :)


0
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

2
如果,这将是有用的 说明 脚本正在做什么。它可以帮助人们学习/理解这些东西的运作方式。
Allan
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.