【发布时间】:2023-04-04 22:37:02
【问题描述】:
我正在尝试在 Notes.app 中自动快速创建新笔记,并且我想在单个浮动窗口中打开我新创建的笔记。
这是我创建笔记的代码:
set RunTime to ((current date)) as string
tell application "Notes"
activate
tell account "iCloud"
make new note at folder "Notes" with properties {name:RunTime}
--does not work
--open document {name:RunTime}
end tell
end tell
有什么想法吗?
【问题讨论】:
标签: macos applescript