Schedule I

Schedule I

Vis statistikker:
support for 5 button mice please.
I would love to remap 'Use' to button 4. that is all.
< >
Viser 1-2 af 2 kommentarer
nathan.peltier 22. apr. kl. 20:06 
Download AutoHotkey, its great for mapping mouse buttons. I have button 5 as an auto-clicker for moving items and 4 as ESC.
Once downloaded and have AutoHotkey Dash open, Click New Script and name it "Gaming", then click Create, this will open a folder with the file you just made, right-click the file > Open with > Notepad
Paste this in
; ───────────────────────────────────────────────────────────
; MOUSE REMAPPER - GAMING FOR SCHEDULE 1
; ───────────────────────────────────────────────────────────

#Persistent
#SingleInstance Force
SetBatchLines, -1
CoordMode, ToolTip, Screen

autoClick := false

; ─── Button 4: Tap = Escape ────────────────────────────────
XButton2::
KeyWait, XButton1, T0.3
if !ErrorLevel {
Send {Escape}
}
return

; ─── Button 5: Tap = E, Hold = Shift + Auto Click ──────────
XButton1::
KeyWait, XButton1, T0.3
if ErrorLevel {
Send {Shift down}
autoClick := true
SetTimer, AutoClicker, 50
} else {
Send e
}
return

XButton1 Up::
Send {Shift up}
autoClick := false
SetTimer, AutoClicker, Off
return

AutoClicker:
if (autoClick) {
Click
}
return

; ─── Emergency Exit Shortcut ───────────────────────────────
^+q::ExitApp

Last you just have to save the notepad file and double-click the "Gaming" file to run it, you can turn it off at the bottom right of your desktop "^" show hidden items and you will see the AutoHotkey icon, but easier to just Pause Script.
(Paste it to ChatGPT and it will map whatever you want, I wouldn't recommend messing with the left and right click mouse buttons though).

Hope this helps.
EddyVegas 22. apr. kl. 23:53 
hey nathan, thanks so much for the method, but i'm afraid it's too much for my 71 year old brain. i'll just wait and hope it gets implemented. again, that is very nice of you to help me out. have an award!
< >
Viser 1-2 af 2 kommentarer
Per side: 1530 50