J'ai utilisé un applescript téléchargé pour activer/désactiver rapidement les coins chauds mais ils ne fonctionnent plus après la mise à jour vers Mavericks. Quelqu'un sait-il ce qui se passe ?
Voici le script désactivé, j'espère qu'il vous aidera à savoir de quoi je parle.
tell application "System Events"
activate
if UI elements enabled then
tell expose preferences
set properties of the top left screen corner to {activity:none, modifiers:{}}
set properties of the top right screen corner to {activity:none, modifiers:{}}
set properties of the bottom left screen corner to {activity:none, modifiers:{}}
set properties of the bottom right screen corner to {activity:none, modifiers:{}}
end tell
else
tell application "System Preferences"
activate
set current pane to pane "com.apple.preference.universalaccess"
display dialog "UI element scripting is not enabled. Check \"Enable access for assistive devices\""
end tell
end if
end tell
tell application "System Preferences" to quit