Estoy trabajando en una aplicación de Automator donde la parte que me toca tiene una ventana de selección de buscador abierta dentro de la aplicación - Telestream Switch.
Mis próximos pasos serían:
1 Pedir el artículo del buscador
2 Copiar el nombre de la ruta
3 Volver a Telestream Switch App - cmd shift G y pegar el nombre de la ruta y entrar - Para que el archivo sea seleccionado.
4 Remítase al punto 1 para que se vuelva a seleccionar el elemento del buscador.
5 Ejecute el siguiente apple script para copiar sólo el nombre del elemento.
en ejecución {entrada, parámetros}
set fileName to first item of input
tell application "System Events" to ¬
tell disk item (fileName as text) to ¬
set {theName, theExtension} to ¬
{name, name extension}
if theExtension is not "" then
set theName to ¬
text 1 thru -((count theExtension) + 2) ¬
of theName
set the clipboard to theName
else
set the clipboard to theName
end if
return input
fin de carrera
¿Sería esto posible?
Gracias
0 votos
RE: "2 Copiar nombre de ruta" -- No veo un Copiar nombre de ruta acción en el Biblioteca de acciones en Autómata . -- ¿Es este un específico acción en Autómata puede ser añadido por un aplicación de terceros ?