Script Editor si blocca durante l'esecuzione di Applescript

0

Ho bisogno di estrarre il numero di telefono di tutti i contatti in un particolare gruppo e per quello sto usando il seguente codice -

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

Ma ogni volta che eseguo il codice, l'editor di script si blocca e mi chiede di riaprirlo anche se ho un solo contatto in quel gruppo. Cosa sta succedendo qui?

    
posta Kevin Vert 24.12.2014 - 12:51
fonte

1 risposta

2

Prova:

tell application "Contacts"
    set inGroup to first group whose name = "Technology"
    set phoneProps to properties of phones of inGroup's people
end tell
    
risposta data 24.12.2014 - 14:03
fonte

Leggi altre domande sui tag