Mapping Middle Mouse Button to the End key using Autohotkey -
my goal map "delete" key middle mouse, aka clickable wheel on mouse. i'm on windows 10 machine. currently, no matter do, clicking on wheel within browser , other apps, produces cross-hair.
i tried:
mbutton:: send, {end}
also tried
wheeldown:: send, {end}
both did not work. thoughts?
if remapping
mbutton::end
isn't working you, try this
*mbutton:: keywait, mbutton return *mbutton up:: send, {mbutton up}{end} return
Comments
Post a Comment