Disable Right Click Gesture on Fusion

Disable Right Click Gesture on Fusion

feritkanca
Community Visitor Community Visitor
253 Views
0 Replies
Message 1 of 1

Disable Right Click Gesture on Fusion

feritkanca
Community Visitor
Community Visitor

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



0 Likes
254 Views
0 Replies
Replies (0)