我还想播放上一首曲目并播放/暂停。问题是我的键盘没有多媒体键,所以我想设置热键来做同样的事情。
答案1
答案2
正如所描述的这里,您可以创建一个由批处理文件调用的 powershell 脚本:
script.ps1
:
$wshShell = new-object -com wscript.shell
$wshShell.SendKeys([char]176)
next_track.bat
:
powershell -ExecutionPolicy RemoteSigned -File "C:\path\to\your\script.ps1"
还有其他键的列表:
静音/取消静音:173
调低音量:174
调高音量:175
下一曲目:176
上一曲目:177
停止媒体:178
播放/暂停:179
答案3
最好的选择是使用 Autohotkey,因为它允许您为大多数程序映射键盘快捷键。
http://www.hacksar.com/blog/2009/03/09/how-to-control-itunes-from-anywhere-autohotkey/
看这里