我正在尝试使用 applescript/iphoto 获取专辑的名称。到目前为止,我有这个
tell application "iPhoto"
activate
set theEvents to get every album
repeat with aEvent in theEvents
log name of aEvent
end repeat
end tell
但是当它打印名称时,我得到了这个:
(*name of album id 6.442450942E+9*)
(*name of album id 6.442450941E+9*)
(*name of album id 6.44245094E+9*)
不是我想要的。我对applescript很陌生,所以我怀疑一些基本的东西出了问题,但我在网上看到的几个例子似乎做了这样的事情。任何帮助表示赞赏。
更新
可能已经找到答案了。我已经看到提示,与专辑名称不同,无法使用 applescript 直接访问事件名称(对我来说似乎很愚蠢,但这就是我目前发现的)