User Tools

Site Tools


autohotkey_recipes

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
autohotkey_recipes [2015/04/12 15:52] tkbletscautohotkey_recipes [2017/09/17 18:22] – [Winkey shortcut overrides] tkbletsc
Line 27: Line 27:
 ; Win+M = toggle mute ; Win+M = toggle mute
 #m::Send {Volume_Mute} #m::Send {Volume_Mute}
 +</file>
 +
 +===== Hold down any key =====
 +<file>
 +; do right win key + whatever to hold that key down (if it's listed below)
 +>#w::Send {w down}
 +>#a::Send {a down}
 +>#s::Send {s down}
 +>#d::Send {d down}
 +>#LButton::Send {LButton down}
 +>#MButton::Send {MButton down}
 +>#RButton::Send {RButton down}
 +>#q::Send {q down}
 +>#e::Send {e down}
 </file> </file>
  
Line 133: Line 147:
 <file> <file>
 ; WinAmp+Launchy remaps ; WinAmp+Launchy remaps
-#x::#^+#z::Media_Prev 
-#b::#^b+#x::Media_Play_Pause 
 +#c::Media_Play_Pause 
 +#v::Media_Stop 
 +#b::Media_Next
 #space::^#Space #space::^#Space
 +
 +; old simple winamp remaps -- the newer ones above let it work for non-winamps, such as spotify
 +;#x::#^x
 +;#b::#^b
 </file> </file>
 ===== Auto mouse ===== ===== Auto mouse =====
Line 190: Line 211:
 #IfWinActive #IfWinActive
 </file> </file>
 +
 +
 ===== Suppress F1 in Explorer, Word, and Excel ===== ===== Suppress F1 in Explorer, Word, and Excel =====
 The code below will replace the annoying help popup with a low-pitched beep.  Change "SoundBeep..." to "Return" for silent operation. The code below will replace the annoying help popup with a low-pitched beep.  Change "SoundBeep..." to "Return" for silent operation.
autohotkey_recipes.txt · Last modified: 2017/10/23 20:00 by tkbletsc

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki