Applescript - 从Notes.app获取备注

时间:2014-08-20 10:39:33

标签: applescript

有人可以向我解释这种奇怪的行为吗?我试图得到一个名为“TEST”的音符,但即使我运行这个命令:

tell application "Notes"
    activate
    set theName to get name of the first note
    display dialog theName
    set theNote to the note whose name is theName
end tell

对话框将正确显示名称(即“TEST”)。 但是这段代码导致了一个错误:“无法记下名字=”TEST \“。”

我做错了什么?

1 个答案:

答案 0 :(得分:3)

删除"其名称为"你应该得到你所追求的东西。

e.g,

tell application "Notes"
    activate
    set theName to get name of the first note
    display dialog theName
    set theNote to the note theName
end tell