![](https://static.mwomercs.com/forums//public/style_images/master/icon_users.png)
![](http://static.mwomercs.com/img/house/kurita.png)
Logitech Setpoint 6.61 Causing Drop In Fps
#1
Posted 23 October 2013 - 11:10 AM
Has anyone else experienced this problem? Does anyone have a solution that doesn't involve switching devices? I love the mouse, but the software/drivers are killing me here. Any help is appreciated.
Thank you.
#2
Posted 24 October 2013 - 12:52 AM
I'm running a G9X and G710+.. not sure if it's available for the MX versions.
#3
Posted 24 October 2013 - 07:38 PM
Still looking for other solutions, though, because I really do like the feel of the mouse overall.
#4
Posted 25 October 2013 - 07:31 PM
What I can tell you is this:
There is likely a workaround with the XMouse solution.
On my MX620, I had a "Search" button. With no logitech software installed, I was able to find out that this sent "Virtual Key xx" (I forget the number, maybe 26?)
I then used Autohotkey to map that function to something else.
I seem to remember all I needed was the AHK recorder program - I pressed the button that could not be mapped, and it told me the virtual key number.
Then just rebind that key using an AHK script.
So say the virtual key number was 99, you could use a script like this to map that button to middle mouse button:
*VK99::
send MButton
return
#5
Posted 25 October 2013 - 11:21 PM
Reference the "set point" software:
Install and run all the other components of the Logitech programs except the set point components. You can uncheck the "install set point" during the full program install, I have the unifying software for the keyboard and mouse.
I run a G110 and G700 and only run the gamming software 8.50 version. Which controls all the settings for both.
I do not have set point running during MWO only the gamming software as that is where I set the mouse DPI parameters and buttons. Once it's turned on and residing on the taskbar I have no issues, all the buttons work and MWO can "see" any changes I make. (although once I set up the thumb and DPI buttons I haven't had to change then in months.)
I see that the MX only shows the set point, flow control, and unifying downloads. But I give you the link for the Gaming software, I assuming your running Win7 and 64bit.
http://www.logitech....ction=downloads
That's the drivers for my G700 but the gamming software is the correct version you should be able to run. If it doesn't work for you, it's a simple uninstall.
You should be looking at a screen like this to set, program buttons, set the ranges for DPI, report rate, and profiles. That's my mouse, but it should see and identify yours also.
![Posted Image](http://assets-cloud.enjin.com/users/3789002/pics/original/2210713.jpg)
And uninstall the set point as it is doing you no good. I don't know why Logitech hasn't advanced the gaming software with the newer mice.
later,
9erRed
Edited by 9erRed, 25 October 2013 - 11:23 PM.
#6
Posted 26 October 2013 - 04:11 AM
#7
Posted 26 October 2013 - 06:46 AM
One of the remaining two thumb buttons can then be assigned to Mouse Sensitivity, and make it switchable if you want. That'd be the one bonus for having SetPoint rather than uninstalling.
Anyway, that's what I do with my Performance MX. Experimenting beyond that gets to be too much effort for a game. (I simply select Fire Groups 5&6 via keyboard or moving primary fire to them for circumstances of range or arms or whatever).
#8
Posted 26 October 2013 - 08:16 AM
I have a logitech m570 wireless mouse
after 1 patch they did i lost this functionally
how ever via the actionmap.xml file you have you can point to the mouse scroll wheel
here is the code i use to assign the zoom function to my wheel
</action>
-<action name="m_toggle_zoom_mode"><rebind defaultInput="mouse3" index="1" input="mwheel_up" device="keyboard"/><rebind defaultInput="j1_pov_right" index="2" input="j0_pov0_up" device="joystick"/>
and here is the code i use for advanced zoom
</action>
-<action name="m_toggle_4x_zoom_mode"><rebind defaultInput="v" index="0" input="x" device="keyboard"/><rebind defaultInput="" index="1" input="mwheel_down" device="keyboard"/>
once i input these codes in my actionmap.xml file my scroll wheel works just fine even though the game no longer sees it
hope this is helpful
Edited by Mandark Reyoku, 26 October 2013 - 08:20 AM.
#9
Posted 26 October 2013 - 09:41 AM
draiocht, on 26 October 2013 - 06:46 AM, said:
Mandark Reyoku, on 26 October 2013 - 08:16 AM, said:
Neither of these are his problem.
SetPoint is causing him problems, he cannot run it.
When you uninstall SetPoint, only buttons that windows natively supports are recognised.
These buttons are:
LMB, RMB, MMB, WheelUp/Down/Left/Right, Side Button 1/2 (Forward/Back)
His mouse has some other buttons apart from that ("Zoom", "AppSwitch") which are NOT native windows buttons for mice.
Without the logitech driver installed, he is unable to remap these functions.
XMouse is a 3rd party driver, but does not support custom buttons such as Zoom and Appswitch found on his mouse.
Without the driver installed, these buttons always send "Virtual Key Codes" - the technique I outlined was to use AutoHotkey to remap these virtual key codes to something that MWO can recognize.
#10
Posted 27 October 2013 - 03:54 PM
evilC, on 26 October 2013 - 09:41 AM, said:
Neither of these are his problem.
SetPoint is causing him problems, he cannot run it.
When you uninstall SetPoint, only buttons that windows natively supports are recognised.
These buttons are:
LMB, RMB, MMB, WheelUp/Down/Left/Right, Side Button 1/2 (Forward/Back)
His mouse has some other buttons apart from that ("Zoom", "AppSwitch") which are NOT native windows buttons for mice.
Without the logitech driver installed, he is unable to remap these functions.
XMouse is a 3rd party driver, but does not support custom buttons such as Zoom and Appswitch found on his mouse.
Without the driver installed, these buttons always send "Virtual Key Codes" - the technique I outlined was to use AutoHotkey to remap these virtual key codes to something that MWO can recognize.
Alright, I can see how this would work, but I'm unfamiliar with AutoHotKey to the point that I don't understand how to create and run the script that you outlined. Could you elaborate more on the process?
Currently experimenting and trying to figure out what will get the job done, but more information would be helpful.
Thank you
#11
Posted 28 October 2013 - 04:48 AM
Create a text file with an .ahk extension (eg mouse.ahk)
Edit it in a text editor and paste in the code.
Double click mouse.ahk, a green icon with a white H will appear in your system tray - the script is now running.
If you make changes to the script, they will not take effect until you re-run the script.
The easiest way to do that is to right click the H icon and select "Reload This Script".
#12
Posted 28 October 2013 - 01:45 PM
evilC, on 28 October 2013 - 04:48 AM, said:
Create a text file with an .ahk extension (eg mouse.ahk)
Edit it in a text editor and paste in the code.
Double click mouse.ahk, a green icon with a white H will appear in your system tray - the script is now running.
If you make changes to the script, they will not take effect until you re-run the script.
The easiest way to do that is to right click the H icon and select "Reload This Script".
Okay, Got AHK installed and even set up a script that would display the Virtual Key for both Mouse and Keyboard presses, but I ran into a problem here. Without SetPoint installed, the buttons literally do nothing. They don't even generate a VK as far as I can tell.
Going to try to install setpoint and run as non-admin so that the keys can be mapped, then try to create a script that will detect those keypresses and return the desired effect by running AHK as admin (If possible). Will post more once I've run the test.
#13
Posted 28 October 2013 - 02:02 PM
#14
Posted 28 October 2013 - 03:42 PM
![:blink:](https://static.mwomercs.com/forums/public/style_emoticons/default/sad.png)
I forget - is there a mode in SP where you can choose to have application specific profiles or store the profile on the mouse?
If it has the ability to store the profile on the mouse, try uploading a setting to the mouse where those buttons do something, then uninstall setpoint.
When working correctly, and the buttons send appswitch etc - what do they show up as in the sniffer?
Finally, I would ask around on the AHK forums - there are lots of knowledgeable people on there and it is rare for a request for help such as this to go unanswered.
One way or another, it should be possible - the buttons should do *something* without the driver installed - it may not be a VK, but it may well be a ScanCode or generate a USB HID message.
Edited by evilC, 28 October 2013 - 03:43 PM.
#15
Posted 28 October 2013 - 03:48 PM
There is a generic mouse driver available here that may work for you.
Installation could be a bit complex, and I think the software is no longer supported, but it may help.
The setup procedure he describes shows how to debug USB messages coming from your mouse, so this may help you even if his driver doesn't work.
#16
Posted 28 October 2013 - 06:16 PM
#17
Posted 28 October 2013 - 07:01 PM
#18
Posted 29 June 2016 - 10:15 AM
Works great.
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users