如何为 Windows Media Player 编写自己的“暂停”按钮?

如何为 Windows Media Player 编写自己的“暂停”按钮?

我想要某种方法来创建一个快捷按钮来暂停 Windows Media Player。我的键盘没有暂停/播放按钮,所以我想找到一种免费的方法来模仿它。

答案1

下列自动热键脚本对我有用:

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn  ; Recommended for catching common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

#Esc::Media_Play_Pause

这个答案还涵盖其他选项

答案2

你不一定需要使用 AHK 并保持其运行(当然,除非你出于其他原因使用它)。像夏普键也应该能够提供帮助,通过允许您重新映射任何未使用的键以用作播放/暂停键:

1

这样,就不需要在后台继续运行任何额外的进程。

相关内容