El truco consiste en descubrir cómo abordar el elemento de control correcto en la ventana.
Consulte esta sugerencia para obtener una explicación de cómo obtener la información necesaria:
enlace
Este código Applescript funcionará en una ventana del Finder llamada "Titan":
-- text field 1 of group 5 of tool bar 1 of window "Titan" of application process "Finder" of application "System Events"
-- button 1 of text field 1 of group 5 of tool bar 1 of window "Titan" of application process "Finder" of application "System Events"
set windowname to "Titan"
-- set this to name of open Finder window you want to deal with
tell application "Finder"
activate
end tell
tell application "System Events"
tell process "Finder"
set value of text field 1 of group 5 of tool bar 1 of window windowname to "Here is some text"
end tell
end tell
De todos modos, el código insertará "aquí hay un texto" en el cuadro de búsqueda de la ventana del Finder. Las primeras 2 líneas son comentarios que muestran las piezas del cuadro de búsqueda. Probablemente también puedes hacer clic en ese botón.