,可以通过以下步骤实现:
tell application "Notes"
set selectedNotes to selection
if (count of selectedNotes) > 0 then
set noteId to id of item 1 of selectedNotes
return noteId
else
return "No note selected."
end if
end tell
以上代码通过使用AppleScript的tell
语句来告诉Notes应用执行操作。首先,它获取当前选定的笔记,并将其存储在selectedNotes
变量中。然后,它检查选定的笔记数量是否大于0。如果是,它将获取第一个选定笔记的Id,并将其存储在noteId
变量中。最后,它返回noteId
作为结果。
这样,你就可以在Applescript中获取所选Apple Note的Id了。
注意:以上代码是基于Apple Notes应用的,如果你使用的是其他笔记应用,需要相应地修改代码以适应该应用的API和功能。
领取专属 10元无门槛券
手把手带您无忧上云