在 OSX 上的 iTunes 12 中,键盘快捷键可播放当前正在播放的歌曲“Love”

在 OSX 上的 iTunes 12 中,键盘快捷键可播放当前正在播放的歌曲“Love”

苹果似乎忘记在 iTunes 中为“喜欢”或“喜欢”当前正在播放的歌曲建立键盘快捷键。这很不幸,因为在工作时,我经常想喜欢一首不熟悉的歌曲,而不必切换到 iTunes 并失去注意力。有没有未记录的方法可以做到这一点?我知道我可以使用类似于以下的自动化功能:如何使用快捷方式从我的 Mac 运行 applescript(不使用第三方应用程序)?但如果能够使用 iTunes 原生的东西而不是 applescript 就更好了,比如:

tell application "iTunes"
set loved of current track to not loved of current track
end tell

https://forum.keyboardmaestro.com/t/keyboard-shortcut-to-like-currently-playing-song-in-itunes-12-2/1488/3

答案1

我没有找到比这个解决方案更好的方法,但我将其更新为不再“取消喜爱”已标记为喜爱的曲目。

tell application "iTunes"
  if current track is not loved then
    set loved of current track to not loved of current track
  end if
end tell

相关内容