I like having my middle mouse button be a double click, so I have an .ahk
script to make that happen, but a lot of programs I use (particular ones involving a 3D environment like Autodesk stuff) need the middle mouse button to function normally, so I have this script:
#SetTitleMatchMode, 2
#IfWinNotActive, Autodesk
MButton::send, {LButton}{LButton}
All this does is make the double click work constantly. As if it's ignoring the WinNotActive completly. I have no idea why this doesn't work. I've tried a few things to see if I could fix it myself, but I made no progress.
Please remember that kind and respectful responces are greatly appreciated.
MButton
s functionality overridden everywhere? – phil294#ifwinnotactive
so the condition is "reset" after the MButton Hotkey – phil294#IfWinNotActive
at the end and worked, @Blauhirn! Thanks. You should add that as an answer. – Caleb