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