Esta es una sugerencia (funciona en OSX 10.8)
Uso de Automator :
- Crear un nuevo Servicio con automator
- Seleccione Servicio que recibe seleccionado sin entrada en cualquier aplicación
- Añade un Ejecutar AppleScript acción
Copia este script :
on run {input, parameters}
tell application "System Events"
set processList to (every application process whose visible is true)
repeat with appProc in processList
set windowList to every window of appProc
repeat with aWindow in windowList
click (third button of aWindow)
end repeat
end repeat
end tell
end run
- Guarde su nuevo servicio
- En Preferencias del Sistema > Teclado > Atajos de teclado > Servicios añada un atajo de teclado a su servicio de noticias
Editar :
Otro script :
on run {input, parameters}
tell application "Finder"
set visible of every process whose visible is true and name is not "Finder" to false
close every window
end tell
end run
Oculta todas las aplicaciones pero cierra todo el buscador de Windows.