How-To: Create Custom Windows Shortcuts with AutoHotkey
Example: Create Your Own Media Controls
Don’t fret if your keyboard doesn’t include multimedia controls, because with AutoHotkey, it’s simple enough to create your own. Here’s an example of a script for controlling all facets of multimedia playback using the CTRL+Shift combination:
^+m::Send {Volume_Mute}
^+.::Send {Volume_Up}
^+,::Send {Volume_Down}
^+n::Send {Media_Next}
^+b::Send {Media_Prev}
^+o::Send {Media_Stop}
^+p::Send {Media__Play_Pause}
The coolest part about this is the above controls work with any media player, be it Windows Media Player, WinAmp, or even Napster.
Take Your Scripts with You
It isn’t necessary to install AutoHotkey on every PC you come in contact with. Instead, right-click on any scripts you want to make portable and select Compile Script. AutoHotkey will spit out a related executable that can be run on any Windows-based PC!