Cómo ejecutar Diga "algo" en segundo plano en AppleScript

3

Me gustaría tener un código AppleScript como este:

row 1
say "some long text here"
row 3

Cuando comienza a hablar texto, al mismo tiempo continúa en la fila 3.

Creo mis scripts en AppleScript Editor y no conozco lo suficiente sobre el control de procesos en OS X para comprender los antecedentes todavía.

    
pregunta brianBlue 26.07.2014 - 17:58

2 respuestas

1

Me gusta esto

say "some long text here" without waiting until completion
    
respondido por el jackjr300 27.07.2014 - 01:03
0

Puedes hacer esto haciendo que Terminal ejecute la línea de AppleScript:

set myscript to "say \"some long text here\""
ignoring application responses
  tell application "Terminal"
    do script "osascript -e " & quoted form of myscript
  end tell
end ignoring
    
respondido por el grg 26.07.2014 - 18:24

Lea otras preguntas en las etiquetas