ฉันใช้ applescript ที่ดาวน์โหลดมาเพื่อเปิดใช้งาน / ปิดใช้งานมุมที่ร้อนแรงอย่างรวดเร็ว แต่มันไม่ทำงานหลังจากที่ฉันอัพเกรดเป็น Mavericks มีคนรู้ว่าเกิดอะไรขึ้น
นี่คือสคริปต์ปิดการใช้งานหวังว่ามันจะช่วยให้คุณรู้ว่าฉันกำลังพูดถึงอะไร
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