Depuis la mise à jour vers yosemite, l'apple script choose color
ne fonctionne plus. L'application de sélection des couleurs se lance mais la pipette ne fonctionne pas. Quelqu'un connaît-il un moyen de contourner ce problème ?
Réponses
Trop de publicités?
Mateusz Szlosek
Points
21762
muyinliu
Points
1
Vous pouvez télécharger l'application Sélecteur de couleurs et enregistrez le code AppleScript suivant en tant que Service (utilisez Automator pour le créer).
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