Ho usato un applescript scaricato per abilitare / disabilitare velocemente le hot corner ma non funzionano dopo l'aggiornamento a Mavericks. Qualcuno sa cosa sta succedendo?
Ecco lo script di disabilitazione, spero che ti aiuti a sapere di cosa sto parlando.
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