键盘快捷键显示标签...对话框


1

在Finder中,您可以选择文件,然后从“文件”菜单或上下文菜单中选择“标签...”。它将显示一个允许您选择或键入标记名称的小对话框,您可以按Enter键将它们应用于所选文件。

在此输入图像描述

的Mac OS莫哈韦之前,我是能够分配一个快捷键该菜单项(使用方法是这样,虽然我使用键盘大师)。

但是使用Mojave,Tags ...不再是标准菜单项,因此不能以这种方式访问​​它。使用省略号字符而不是三个句点无济于事。现在有办法做到这一点吗?我尝试编写系统事件脚本,但无法使其正常工作。


“这不是省略号与期间问题” 如果你发布你的代码,有人可能能够辨别问题是什么并为你解决。
CJK

我没有任何代码可以发布....我指的是三个句点和省略号字符之间的区别,有时候很难通过代码查找菜单项。我会澄清一下。
JW。

你在帖子中明确地说“我试过脚本系统事件,但是无法使它工作。”
CJK

Answers:


1

Mac OS 10.14似乎不再适用。我的解决方法是使用Keyboard Maestro,使用以下宏:

For Each Item in the Collection Execute Actions
    For Each FilePath in the Finder selection
Execute the Following Actions:
    Get Tags to Variable ‘Tags’
    From file: %Variable%FilePath%

Prompt for User Input ‘Tags’
    Prompt: Enter tag to toggle
Input the following variables:
    Tags (default to ‘%Variable%Tags%’)
Finish with the following buttons:
    OK
    Cancel (cancel macro)

For Each Item in the Collection Execute Actions
    For Each FilePath in the Finder selection
Execute the Following Actions:
    Set Tags to ‘%Variable%Tags%’
    File: %Variable%FilePath%

如果您选择一些Finder项目并运行此宏,它将提示您输入标签。您可以输入以逗号分隔的多个标签。按确定将这些标签应用于所选项目。提示将预先填充选择中最后一项的标签(宏的这部分不理想)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.