Yo era capaz de modificar algunos de los scripts que ya existen, y conseguir que el trabajo en Lion. Para crear estas secuencias de comandos:
- Ejecute el Editor Applescript
- Crear dos nuevos vacío archivos de secuencia de comandos (ctrl-N)
- Pegar en estos dos scripts
- Guardar en ellos como algo como "swap opción de comando" y "restaurar la opción de comando" o lo que quieras
- Puedes probar ejecutando en el editor applescript.
Aquí está el script de intercambio de comandos de la opción, y la opción de comando:
#
# Script to swap the Command and Option keys
# in the System Preferences Keyboard settings.
#
# Helpful if using a PC keyboard
#
tell application "System Preferences"
activate
set current pane to pane "com.apple.preference.keyboard"
end tell
tell application "System Events"
tell process "System Preferences"
click button "Modifier Keys…" of tab group 1 of window "Keyboard"
# Select keyboard: pop up button
click pop up button 5 of sheet 1 of window "Keyboard"
# The 4th choice there.. my USB Keyboard
click menu item 4 of menu 1 of pop up button 5 of sheet 1 of window "Keyboard"
# The Option Key pop up
click pop up button 2 of sheet 1 of window "Keyboard"
# Change it to Command, the 4th choice
click menu item 4 of menu 1 of pop up button 2 of sheet 1 of window "Keyboard"
# The Command Key pop up
click pop up button 1 of sheet 1 of window "Keyboard"
# Change it to Option, the 3rd choice
click menu item 3 of menu 1 of pop up button 1 of sheet 1 of window "Keyboard"
click button "OK" of sheet 1 of window "Keyboard"
end tell
end tell
tell application "System Preferences"
quit
end tell
Aquí está la secuencia de comandos para el intercambio de espalda:
#
# Script to restore the Command and Option keys to their defaults
# in the System Preferences Keyboard settings.
#
tell application "System Preferences"
activate
set current pane to pane "com.apple.preference.keyboard"
end tell
tell application "System Events"
tell process "System Preferences"
click button "Modifier Keys…" of tab group 1 of window "Keyboard"
# Select keyboard: pop up button
click pop up button 5 of sheet 1 of window "Keyboard"
# The 4th choice there.. my USB Keyboard
click menu item 4 of menu 1 of pop up button 5 of sheet 1 of window "Keyboard"
# The Option Key pop up
click pop up button 2 of sheet 1 of window "Keyboard"
# Change it to Option, the 3rd choice
click menu item 3 of menu 1 of pop up button 2 of sheet 1 of window "Keyboard"
# The Command Key pop up
click pop up button 1 of sheet 1 of window "Keyboard"
# Change it to Command, the 4th choice
click menu item 4 of menu 1 of pop up button 1 of sheet 1 of window "Keyboard"
click button "OK" of sheet 1 of window "Keyboard"
end tell
end tell
tell application "System Preferences"
quit
end tell
Para hacer estas secuencias de comandos de fácil acceso, usted puede ir a Editor Applescript Preferencias y de verificación "Mostrar menú de secuencia de Comandos en la barra de menús". A continuación, copiar los scripts en el directorio home Library/directorio de secuencias de comandos, es decir, /los Usuarios/ryan/Biblioteca/Scripts
Ahora usted puede acceder a ellos a la derecha de la barra de menú de secuencia de comandos de menú.