Parece que no hay un método abreviado de teclado integrado para "Mostrar barra de ruta" en el Finder. ¿Cómo puedo crear uno?
Parece que no hay un método abreviado de teclado integrado para "Mostrar barra de ruta" en el Finder. ¿Cómo puedo crear uno?
Vaya al panel de preferencias Teclado en Preferencias del sistema y elija la pestaña Atajos de teclado. En la columna de la izquierda, elija Atajos de aplicación como se muestra en la imagen a continuación.
HagaclicenelbotónmásyagregueunaentradademétodoabreviadodetecladoparaFinderparaelelementodemenú"Mostrar barra de ruta". Como el título del elemento del menú "Mostrar barra de ruta" cambia a "Ocultar barra de ruta" una vez que se muestra la barra de ruta, es posible que también desee agregar un acceso directo para eso.
Use un Spark que le permitirá crear un método abreviado de teclado desde un AppleScript. Luego, cree un AppleScript que haga clic en "Mostrar barra de ruta" en el menú.
tell application "System Events"
set UI_enabled to UI elements enabled
end tell
-- Checks to see if UI scripting is enabled
if UI_enabled is false then
tell application "System Preferences"
activate
set current pane to pane id "com.apple.preference.universalaccess"
display dialog "This script utilizes the built-in Graphic User Interface Scripting architecture of Mac OS x which is currently disabled." & return & return & "You can activate GUI Scripting by selecting the checkbox \"Enable access for assistive devices\" in the Universal Access preference pane." with icon 1 buttons {"Cancel"} default button 1
end tell
end if
if UI_enabled is true then
-- Actual code that clicks the button
tell application "Finder" to activate
tell application "System Events"
tell process "Finder"
tell menu bar 1
tell menu bar item "View"
tell menu "View"
click menu item 12
end tell
end tell
end tell
end tell
end tell
end if