How to set ScrollMouse UP, Down as buttons for changing convergence in nVidia control panel
Hi, is it possible to set mouse scroll to increase , decrease convergence ? directly in panel i cant do it but maybe in some registry?
Hi, is it possible to set mouse scroll to increase , decrease convergence ? directly in panel i cant do it but maybe in some registry?

#1
Posted 02/11/2016 06:32 AM   
if you have AutoHotKey installed the following code will enable you to use the MButton + WheelDown to Increase or MButton + WheelUp to Decrease Convergence... MButton 'holds' the keys down so you need to release and repress it to switch between Increasing/Decreasing. [code]#SingleInstance Force #MaxThreads 1 ~MButton & WheelUp:: ~MButton & WheelDown:: While GetKeyState("MButton","P") { if InStr(A_ThisHotKey,"Up") Send {Control Down}{F5 Down} Else if InStr(A_ThisHotKey,"Down") Send {Control Down}{F6 Down} } Send {Control Up}{F5 Up}{F6 Up} Return[/code] ...if for some reason you want to invert the way WheelUp/Down work in relation to Increasing/Decreasing Convergence just swap the "Up" and "Down" in lines 8 and 10 respectively.
if you have AutoHotKey installed the following code will enable you to use the MButton + WheelDown to Increase or MButton + WheelUp to Decrease Convergence... MButton 'holds' the keys down so you need to release and repress it to switch between Increasing/Decreasing.

#SingleInstance Force
#MaxThreads 1

~MButton & WheelUp::
~MButton & WheelDown::
While GetKeyState("MButton","P")
{
if InStr(A_ThisHotKey,"Up")
Send {Control Down}{F5 Down}
Else if InStr(A_ThisHotKey,"Down")
Send {Control Down}{F6 Down}
}
Send {Control Up}{F5 Up}{F6 Up}
Return

...if for some reason you want to invert the way WheelUp/Down work in relation to Increasing/Decreasing Convergence just swap the "Up" and "Down" in lines 8 and 10 respectively.
#2
Posted 02/15/2016 05:33 PM   
also see [url]https://forums.geforce.com/default/topic/845308/how-to-bind-mouse-scroll-up-and-down-to-convergency-and-or-how-to-play-strategy-with-3dvision-/#4571700[/url]
Scroll To Top