Skip to content

Instantly share code, notes, and snippets.

@popstas
Forked from VitalyKondratiev/media_buttons.ahk
Last active March 21, 2018 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save popstas/b532b8b24f81c29ccff8891c1d796e8a to your computer and use it in GitHub Desktop.
Save popstas/b532b8b24f81c29ccff8891c1d796e8a to your computer and use it in GitHub Desktop.
Управление воспроизведением с клавиатуры ( AutoHotkey)
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
+^!End::Send {Media_Play_Pause}
+^!Left::Send {Media_Prev}
+^!Right::Send {Media_Next}
+^!Down::Send {Volume_Down}
+^!Up::Send {Volume_Up}
^!.::
MsgBox, 0, , MediaButtons AHK Script!
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment