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 [2014/07/26 08:35] 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>
 +
 +===== Map gamepad buttons to winamp controls =====
 +All the function gunk around Joy2 and Joy3 is for keyboard auto-repeat of Win+A and Win+S (which I map to winamp volume control elsewhere).
 +<file>
 +; winamp control (if winamp is running)
 +#If WinExist("ahk_class BaseWindow_RootWnd") ; << this badly named thing refers to winamp
 +Joy1::Send {Media_Play_Pause}
 +Joy4::Send {Media_Stop}
 +Joy6::Send {Media_Next}
 +Joy8::Send {Media_Prev}
 +
 +Joy2::
 +  Send {LWin down}{s down}
 +  SetTimer, WaitForJoy2, 30  ; 30ms
 +  return
 +
 +WaitForJoy2:
 +  if not GetKeyState("Joy2" ; The button has been released.
 +  {
 +    Send {LWin up}{s up}  ; Release the spacebar.
 +    SetTimer, WaitForJoy2, off  ; Stop monitoring the button.
 +    return
 +  }
 +  ; Since above didn't "return", the button is still being held down.
 +  Send {LWin down}{s down}  ; Send another Spacebar keystroke.
 +  return
 +
 +Joy3::
 +  Send {LWin down}{a down}
 +  SetTimer, WaitForJoy3, 30  ; 30ms
 +  return
 +
 +WaitForJoy3:
 +  if not GetKeyState("Joy3" ; The button has been released.
 +  {
 +    Send {LWin up}{a up}  ; Release the spacebar.
 +    SetTimer, WaitForJoy3, off  ; Stop monitoring the button.
 +    return
 +  }
 +  ; Since above didn't "return", the button is still being held down.
 +  Send {LWin down}{a down}  ; Send another Spacebar keystroke.
 +  return
 +#If ; EndIf
 +</file>
 +
 +===== Make the top edge of the main monitor "sticky" =====
 +If you have a second monitor //above// the main one, this script will help you still be able to click stuff at the top of the screen without accidentally wandering into the upper monitor.
 +<file>
 +SetupClipCheck() ; enable the mouse confinement system (defined below)
 +
 +; get access to the winapi ClipCursor function, which limits cursor boundaries
 +ClipCursor( Confine=True, x1=0 , y1=0, x2=1, y2=1 ) 
 +{
 + VarSetCapacity(R,16,0),  NumPut(x1,&R+0),NumPut(y1,&R+4),NumPut(x2,&R+8),NumPut(y2,&R+12)
 + Return Confine ? DllCall( "ClipCursor", UInt,&R ) : DllCall( "ClipCursor" )
 +}
 +
 +; count the number of loop iterations the mouse has been near the top and un-confine the mouse if there's been enough
 +SetupClipCheck() {
 + SetTimer, ClipCheck, 10
 + return
 +}
 +
 +top_tick_count := 0   
 +ClipCheck:
 + CoordMode, Mouse, Screen
 + MouseGetPos,x,y
 + ;ToolTip,%x%:%y%:%top_tick_count%
 +
 + If (y < 10) {
 +   top_tick_count++
 + } Else {
 +   top_tick_count := 0
 + }
 +
 + if (top_tick_count>15) {
 +   ClipCursor(False)
 + } Else {
 +   ClipCursor(True, -10000, 0, 10000, 10000)
 + }
 + return
 </file> </file>
  
Line 51: 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 108: 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