Script Editor se bloquea al ejecutar Applescript

0

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í?

    
pregunta Kevin Vert 24.12.2014 - 12:51

1 respuesta

2

Prueba:

tell application "Contacts"
    set inGroup to first group whose name = "Technology"
    set phoneProps to properties of phones of inGroup's people
end tell
    
respondido por el adayzdone 24.12.2014 - 14:03

Lea otras preguntas en las etiquetas