Apple script Llame al siguiente controlador cuando ... asigne situaciones de applecript

0

Recibí mensajes de invitación de texto. Guión. ¿Me está mostrando cómo hacer algo? ¿Se utiliza para enviar mensajes que recibo en algún otro lugar u ocultar de alguna manera? ¿Se está utilizando para bloquear mensajes?

(* INSTRUCTIONS

Messages includes the ability, within its preferences panel, to assign AppleScript scripts to a wide variety of Messages events. The following handler is called when a text invitation is received.

*)

using terms from application "Messages"

    on received text invitation this_message from this_buddy for this_chat

        (*EXAMPLE: this routine automatically accepts a text chat invitation for specified buddies

        set this_name to the name of this_buddy

        if the name of this_buddy is in {"Johnny Appleseed"} then

            set the greeting_name to the first name of this_buddy

            if the greeting_name is "" then set the greeting_name to this_name

            accept this_chat

            send "Hello " & greeting_name & "!" to this_chat

        end if

        *)

    end received text invitation

end using terms from
    
pregunta Mac 25.08.2017 - 16:48

1 respuesta

1

Creo que tu pregunta es: "¿Qué hace este script?". Este script es un script de muestra, que recibirá una invitación a un mensaje de texto. Si el nombre de la persona que envía el mensaje de texto es "Johnny Appleseed", responderá en el chat con un mensaje de texto que dice "¡Hola, Johnny Appleseed!".

    
respondido por el Hurston 28.08.2017 - 21:14

Lea otras preguntas en las etiquetas