Preguntas etiquetadas con script

1
Activar el escritorio usando Applescript

Básicamente, tengo este breve script para "limpiar" el escritorio. Este es el código: tell application "System Events" tell application "Finder" to activate desktop delay 0.1 tell process "Finder" to click menu item "Clean Up" of menu "View" of menu bar item "View" of front menu bar end...

1
AppleScript: descargar a una unidad AFP

Intento descargar archivos a una unidad AFP pero siempre tengo "Advertencia: no se pudo crear el archivo / Volumes / home / Downloads: Is a directory" Pero el último comando funciona bien, dígale a la aplicación "Finder" que abra ("/ Volumes / home / Downloads" como archivo POSIX) set theFileURL...

1
Ruta de carpeta temporal para Apple Script

set targetFile to (path to temporary items as string) & fileName Estoy tratando de descargar una imagen web en una carpeta temporal mediante curl en un Apple Script. De acuerdo con el código anterior, el rizo lo descarga como correcto pero el archivo target es actualmente como: Macintosh...

1
Hacer clic y escribir código Applecript no funciona

Estoy haciendo un servicio en Automator que ejecuta el siguiente código AppleScript: on run {input, parameters} tell application "System Events" click at {393, 77} delay 0.1 keystroke "Hello" delay 0.1 keystroke return end tell return input end run Si no puede decirlo, estoy tratando...

1
AppleScript en Distiller

Encontré un script simple para ejecutar Adobe Distiller en algún archivo. on run argv with timeout of (8 * 60) seconds tell application "Acrobat Distiller" Distill sourcePath item 1 of argv end tell end timeout end run ¿Cómo puedo cambiar el tamaño de página dentro de este script? ¿O...

1
¿Applescript que responde a las pulsaciones de teclas?

Quiero escribir un AppleScript que corre (en un bucle) hasta que presione Esc "escucha" para las pulsaciones de teclado 1 , 2 , etc. ejecuta un comando dado para cada pulsación de tecla (ejecutando un comando de shell) ddcctl para cambiar el brillo / contraste del monitor secundario)...

1
En AppleScript, ¿cuál es la clase variable "ctxt"?

Al tratar de aprender sobre los tipos de datos en AppleScript, hice referencia a estas páginas web: http://www.satimage.fr/software/en/smile/computing/as_types/as_data_types.html http://macscripter.net/viewtopic.php?id=24695 Sin embargo, cuando devuelvo la clase de algunas de mis variables...