Me gustaría configurar mi ordenador (Macbook con Snow Leopard) para que maximice y minimice Windows lentamente. Sé que esto se puede hacer manteniendo la tecla de mayúsculas mientras se minimiza, pero ¿puedo configurarlo por defecto para no tener que mantener la tecla de mayúsculas?
Respuestas
¿Demasiados anuncios?
fkydoniefs
Puntos
11
Puede hacerlo utilizando el Applescript que aparece a continuación. Necesitará CornerClick y puede encontrar más información en MacWorld .
tell application "System Events"
keystroke "m" using command down
key down shift
delay 0.3
key up shift
end tell
tell application "System Events"
set proc to name of the first process whose frontmost is true
tell process proc
-- add error trapping here
tell its window 1
set w to its name
if get value of attribute "AXMinimized" is false then
tell application "System Events"
keystroke "m" using command down
key down shift
delay 0.3
key up shift
end tell
end if
end tell
--
end tell
end tell
say "Collapse" using "Alex"