Eggplant 如何在SenseTalk中记录对象属性

Eggplant 如何在SenseTalk中记录对象属性,eggplant,Eggplant,在SenseTalk中记录对象所有属性的最简单方法是什么 像这样,但对于茄子脚本编写?在感官对话中。您可以使用精确的 从某种意义上讲,这是一种空谈。您可以使用精确的 set mike to {current:["Mike and the Mechanics","Genesis"],previous:"Red 7"} repeat with each item of keys(mike) put it & ": &

在SenseTalk中记录对象所有属性的最简单方法是什么

像这样,但对于茄子脚本编写?

在感官对话中。您可以使用精确的

从某种意义上讲,这是一种空谈。您可以使用精确的

set mike to {current:["Mike and the Mechanics","Genesis"],previous:"Red 7"}

repeat with each item of keys(mike)
  put it & ": " & property (it) of mike
end repeat

// current: [Mike and the Mechanics,Genesis]
// previous: Red 7