Message 1 of 1
Disable Right Click Gesture on Fusion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
this solution eliminate very annoying Right Mouse gesture in fusion.
Every one hates not changable features.
Just install AutoHotkey and run this script.
it's works like a charm.
#IfWinActive, ahk_exe Fusion360.exe
RButton::
MouseGetPos, x1, y1
Sleep, 120
MouseGetPos, x2, y2
if (x1 = x2 && y1 = y2)
{
Send {RButton down}
Sleep, 10
Send {RButton up}
}
else
{
Send {RButton up}
}
KeyWait, RButton
Return
#If