Created
July 25, 2013 10:04
-
-
Save manuelvanrijn/6078411 to your computer and use it in GitHub Desktop.
Small script for AutoHotKey when you don't have Media buttons on your keyboard. This script binds the keys below to the following Media actions: - PrintScreen = Previous
- ScrollLock = Play/Pause
- Break = Next
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; | |
; Music player tweak | |
; | |
PrintScreen:: | |
Send {Media_Prev} | |
Return | |
Break:: | |
Send {Media_Next} | |
Return | |
ScrollLock:: | |
Send {Media_Play_Pause} | |
Return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment