2015-03-13 18 views
5

Spotify kısayolları için AutoHotKey komut dosyasını kullandım (yerleşik kısayollar sınırlıdır ve yalnızca uygulama odaktayken çalışır, genellikle arka planda çalışır durumda kalır).Yeni Spotify güncellemesi: Autohotkeys komut dosyası bozuldu

Her neyse, sorun olmadan önce bir milyon kez güncellendi .. ancak en son spotify güncellemesini indirdim ve artık çalışmıyor. Bir fikrin neden?

İşte komut dosyası.

#z::Run www.autohotkey.com 
 

 
SetTitleMatchMode 2 
 

 
; "CTRL + LEFT" for previous 
 
^Left:: 
 
{ 
 
DetectHiddenWindows, On 
 
ControlSend, ahk_parent, ^{Left}, ahk_class SpotifyMainWindow 
 
DetectHiddenWindows, Off 
 
return 
 
} 
 

 

 
; "CTRL + RIGHT" for next 
 
^Right:: 
 
{ 
 
DetectHiddenWindows, On 
 
ControlSend, ahk_parent, ^{Right}, ahk_class SpotifyMainWindow 
 
DetectHiddenWindows, Off 
 
return 
 
} 
 

 
; "CTRL + UP" for pause 
 
^UP:: 
 
{ 
 
DetectHiddenWindows, On 
 
ControlSend, ahk_parent, {space}, ahk_class SpotifyMainWindow 
 
DetectHiddenWindows, Off 
 
return 
 
} 
 

 
; "CTRL + DOWN" for info 
 
^Down:: 
 
{ 
 
DetectHiddenWindows, On 
 
SetTitleMatchMode 2 
 
WinGetTitle, now_playing, ahk_class SpotifyMainWindow 
 
StringTrimLeft, playing, now_playing, 10 
 
DetectHiddenWindows, Off 
 
clipboard = %playing%`r`n 
 
return 
 
} 
 

 
; "CTRL + PAGE UP" for volume up 
 
^PgUP:: 
 
{ 
 
DetectHiddenWindows, On 
 
ControlSend, ahk_parent, ^{Up}, ahk_class SpotifyMainWindow 
 
DetectHiddenWindows, Off 
 
return 
 
} 
 

 
; "CTRL + PAGE DOWN" for volume down 
 
^PgDn:: 
 
{ 
 
DetectHiddenWindows, On 
 
ControlSend, ahk_parent, ^{Down}, ahk_class SpotifyMainWindow 
 
DetectHiddenWindows, Off 
 
return 
 
} 
 

 
; "CTRL + END" for mute 
 
^End:: 
 
{ 
 
DetectHiddenWindows, On 
 
ControlSend, ahk_parent, ^+{Down}, ahk_class SpotifyMainWindow 
 
DetectHiddenWindows, Off 
 
return 
 
}

cevap

1

bu soruya bakın: Hotkey for next song in Spotify - an için bir Spotify geliştirici ifadesini yanı sıra yaklaşan sürümünde giderilecektir dair bir bildiri yanı sıra geçici bir çözüm içerir :

^Left::Media_Prev