A partir de la actualización a yosemite el apple script choose color
ya no funciona. La aplicación de selección de colores se inicia pero el cuentagotas no funciona. ¿Alguien sabe una solución para esto?
Respuestas
¿Demasiados anuncios?
hjdm
Puntos
18
user76285
Puntos
1
Puede descargar la aplicación Selector de color y guarde el código AppleScript siguiente como un servicio (utilice Automator para crearlo).
on run {input, parameters}
--click button to select color from screen
tell application "System Events"
set isRunning to (name of processes) contains "Color Picker"
if not isRunning then
set front_app to (path to frontmost application as Unicode text)
--open Color Picker
do shell script "open -a \"Color Picker\""
delay 2
display dialog "Application Color Picker is running now, please try again" buttons {"OK"} default button 1
else
tell process "Color Picker"
tell window 1
click checkbox 1
end tell
set frontmost to true
end tell
end if
end tell
return input
end run