Parece que não há nenhum atalho de teclado embutido para "show path bar" no localizador. Como posso criar um?
Parece que não há nenhum atalho de teclado embutido para "show path bar" no localizador. Como posso criar um?
It seems there's no built-in keyboard shortcut for "Show Path Bar" in Finder. How can I create one?
Vá para o painel de preferência de teclado nas preferências do sistema e escolha a guia Atalhos de teclado. Na coluna da esquerda, escolha atalhos de aplicativos como mostrado na imagem abaixo.
Clique no botão Plus e adicione uma entrada de atalho de teclado para o Finder para o item de menu "Show Path Barra". Como o título do item de menu "Show Path Bar" muda para "Hide Path Barra" Uma vez que a barra de caminho seja mostrada, você pode querer adicionar um atalho para isso também.
Go to the Keyboard preference pane in System Preferences and choose the Keyboard Shortcuts tab. In the left column, choose Application Shortcuts like shown in the image below.
Click the plus button and add a keyboard shortcut entry for Finder for the "Show Path Bar" menu item. Since the title of the "Show Path Bar" menu item changes to "Hide Path Bar" once the path bar is shown, you might want to add a shortcut for that as well.
Use um faísca que permitirá criar um atalho de teclado de um AppleScript. Em seguida, crie um AppleScript que clique na "Barra de caminho Mostrar" no menu.
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
Use a Spark which will allow you to create a keyboard shortcut from an AppleScript. Then, create an AppleScript that clicks the "Show Path Bar" in the menu.
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
© 2022 pergunte.org All Rights Reserved. Casa de perguntas e respostas todos os direitos reservados