Ich wollte einen Weg finden, wie Hot Corner über Tastaturkürzel deaktiviert/aktiviert werden können. fand ich diesen Apfel SkriptAppleScript im Automator-Fehler ("Die Aktion" AppleScript ausführen "ist auf einen Fehler gestoßen.")
property theSavedValues : {"Mission Control", "Desktop", "Dashboard", "Launchpad"} -- for example
tell application "System Preferences"
set current pane to pane id "com.apple.preference.expose"
tell application "System Events"
tell window "Mission Control" of process "System Preferences"
click button "Hot Corners…"
tell sheet 1
tell group 1
set theCurrentValues to value of pop up buttons
if theCurrentValues is {"-", "-", "-", "-"} then
repeat with i from 1 to 4
set thisValue to item i of theSavedValues
tell pop up button i
click
click menu item thisValue of menu 1
end tell
end repeat
else
copy theCurrentValues to theSavedValues
repeat with i from 1 to 4
tell pop up button i
click
click last menu item of menu 1
end tell
end repeat
end if
end tell
click button "OK"
end tell
end tell
end tell
quit
end tell
ich mit diesem Apfel Skript einen Dienst in Automator So erstellt, befestigte es an Tastenkombination, wenn ich dieses Skript in Automator laufen, es funktioniert, aber wenn ich die Verknüpfung getroffen, im immer "Die Aktion" AppleScript ausführen "hat einen Fehler verursacht". Irgendwelche Ideen, was getan werden kann, um das zu beheben? Danke
Haben Sie etwas dagegen, wie Sie das gemacht haben? –
Gehe zu (Mac OS) Einstellungen -> Sicherheit & Datenschutz -> Zugänglichkeit -> und finde die App, von der du den Dienst betreibst, in meinem Fall den Finder – beretis
Du bist nicht dumm! Diese Fehlermeldung ist Müll! – Meekohi