Pandora 上的 NextSong 按钮的 AutoHotkey 媒体按钮

Pandora 上的 NextSong 按钮的 AutoHotkey 媒体按钮

我尝试做了同样的事情,就像使用媒体键播放/暂停 pandora.com答案页。我只是替换了XXX119运行 GetMediaKey 之后 - 而不是122(对我来说也一样),它的效果很好播放/暂停目的。我还替换了耶耶11因为它是合适的(和下一个)选项卡。

它确实在下一曲按钮周围放置了一个橙色的小虚线方块,但它不会播放下一首歌曲,而是 就像 播放/暂停. 是否需要进行其他修改?

在 Alienware m14x r2 上的 Windows 7 中使用 Google Chrome。

答案1

有点晚了,但我的解决方案是这样的

SC119::
SetTitleMatchMode, 1
WinGet, original, ID, A
WinActivate, Pandora
Send ^l
Send {Tab 10}
Send {Enter}
WinActivate, ahk_id %original%                                                                                                                       
Exit

相关内容