Necesito extraer el número de teléfono de todos los contactos en un grupo en particular y para eso estoy usando el siguiente código -
on run {input, parameters}
tell application "Contacts"
set thePeople to every person
repeat with i from 1 to number of items in thePeople
set this_person to item i of thePeople
set inGroup to name of group of this_person
if inGroup is "Technology" then
set x to properties of phones of this_person
end if
end repeat
end tell
end run
Pero cada vez que ejecuto el código, el editor de secuencias de comandos falla y me pide que lo vuelva a abrir aunque solo haya un contacto en ese grupo. ¿Qué está pasando aquí?