I am trying to access the participants Property form the chat Class of iMessage and am getting an error message that I do not understand.
I therefore broke my code into the most basic of blocks with the block being as follows:
tell application "Messages"
set myChats to chats
-- Determine / extract the information to be displayed
repeat with aChat in myChats
set aParticpant to participants of aChat
log aParticipant
end repeat
end tell
The following is the error message:
While I am sure it is something obvious I am just missing it.