Search found 2631 matches

by jwick
Tue Apr 11, 2023 2:26 am
Forum: Windows Discussion Forum
Topic: CadMouse Pro Wireless: unexpected behaviour with some button (EXOCAD)
Replies: 3
Views: 1724

Re: CadMouse Pro Wireless: unexpected behaviour with some button (EXOCAD)

You might try disabling them.
In our GUI, Buttons->3Dconnexion->Disabled.
by jwick
Mon Apr 10, 2023 1:57 am
Forum: Windows Discussion Forum
Topic: Help with setting the space mouse button to F10 system wide please
Replies: 3
Views: 1545

Re: Help with setting the space mouse button to F10 system wide please

You can't do this with the GUI (and the GUI probably does not show that this is assigned). You can put the assignment into your Global.xml file, which overrides all other assignments. Copy one of those F10 assignments you made for a specific application into %appdata%\3Dconnexion\3DxWare\Cfg\Global....
by jwick
Wed Apr 05, 2023 3:24 am
Forum: Windows Discussion Forum
Topic: 3DConnexion enterprise not working
Replies: 7
Views: 3454

Re: 3DConnexion enterprise not working

For SME problems, it is best to call tech support. If they can't help you, post back here and we will try to diagnose it, remotely.
It's probably easier to do that on the phone.

Some details of what has been tried, what error codes are displayed, ... will be helpful.
by jwick
Tue Apr 04, 2023 11:56 pm
Forum: Windows Discussion Forum
Topic: Left / Right Click via Axis
Replies: 5
Views: 1329

Re: Left / Right Click via Axis

All correct. #1 reminds me why I didn't do it inside the driver. A 60Hz LMB isn't of much use. It is a direct replacement. instead of running my code at 60Hz, it runs your code. Remembering the state is a bit much to ask of a script. Let me work on a DLL for you. Make sure your email address is accu...
by jwick
Tue Apr 04, 2023 9:34 am
Forum: Windows Discussion Forum
Topic: Left / Right Click via Axis
Replies: 5
Views: 1329

Re: Left / Right Click via Axis

I was thinking along the lines of https://stackoverflow.com/questions/39353073/how-i-can-send-mouse-click-in-powershell But probably calling autohotkey is better. Though it needs to be able to be called a zillion times... I don't think I implemented a <RepeatStyle>CallOnceAboveThisLevelAndDontCallAg...
by jwick
Tue Apr 04, 2023 1:27 am
Forum: Windows Discussion Forum
Topic: Left / Right Click via Axis
Replies: 5
Views: 1329

Re: Left / Right Click via Axis

There is no built-in way to do that. You would need to write some code (e.g., a script) that would be called by the Axis. Or possibly, you could use a MouseX/Y event that has a LeftMouseButton/RightMouseButton as a modifier. It would move the cursor, but it would also press and release the button. M...
by jwick
Mon Apr 03, 2023 7:50 am
Forum: Windows Discussion Forum
Topic: Cadmouse Pro Wireless internal/onboard memory
Replies: 3
Views: 1139

Re: Cadmouse Pro Wireless internal/onboard memory

If you can't install the software at work, the functionality of the device will be quite limited. It will still work as a rather generic 2D mouse.
by jwick
Mon Apr 03, 2023 2:58 am
Forum: Windows Discussion Forum
Topic: Space mouse. Assigning X/Y axis to keyborad arrows
Replies: 36
Views: 20060

Re: Space mouse. Assigning X/Y axis to keyborad arrows

somevetpathologist, I don't see anything fundamentally wrong with what you have. I pasted it into my %APPPDATA%/.../Cfg/MSEdge.xml file and it worked. I did change: <AxisBank Default="true" > But that should not matter. You can see what keys are being sent by turning on logging (3Dx systra...
by jwick
Mon Apr 03, 2023 12:49 am
Forum: Windows Discussion Forum
Topic: Anyone able to get the SpaceNavigator working on Windows 11?
Replies: 18
Views: 6257

Re: Anyone able to get the SpaceNavigator working on Windows 11?

The SpaceNavigator fine works on Windows 11. It is greyed out in the GUI to indicate it is no longer "officially supported". Most importantly it is not tested anymore. Though some of us still use it--in fact I was using one last week. It could break. Fair warning. But it is not currently b...
by jwick
Thu Mar 23, 2023 7:45 am
Forum: Windows Discussion Forum
Topic: ESC, Shift, Alt, CTRL not working over RDP
Replies: 3
Views: 1262

Re: ESC, Shift, Alt, CTRL not working over RDP

You can try adding this to your %appdata%\3Dconnexion\3DxWare\Cfg\Global.xml file

Code: Select all

<KMJMechanism>SendInput</KMJMechanism>
as shown in this post
by jwick
Wed Mar 22, 2023 9:31 am
Forum: Windows Discussion Forum
Topic: SpaceMouse Enterprise stops functioning and cannot import settings after reset
Replies: 2
Views: 970

Re: SpaceMouse Enterprise stops functioning and cannot import settings after reset

edsager,

Could you PM a link to the 3DxDiag* file you collected? (OneDrive, DropBox, etc).
by jwick
Wed Mar 22, 2023 9:27 am
Forum: Windows Discussion Forum
Topic: Windows 11 issues
Replies: 5
Views: 2127

Re: Windows 11 issues

"pip install pywinusb spacenavigator"
leads me to believe that application is not using our drivers.

The drivers they are using may need to be updated for the new operating system, and/or for the new devices.
This is the primary reason we recommend using our drivers.
by jwick
Mon Mar 20, 2023 2:53 am
Forum: Windows Discussion Forum
Topic: SpaceMouse Enterprise screen tiff's not loading
Replies: 7
Views: 2205

Re: SpaceMouse Enterprise screen tiff's not loading

Hi Phil999,

Could you please send me a log file from the machine (OS) that does not work?
(3Dx systray icon->Write Log File...(reproduce problem) ...send %localappdata%\3Dconnexion\3DxWare\3DxService.log)
Email a link if the file is too big.

Thanks,
Jim
by jwick
Fri Mar 17, 2023 1:36 am
Forum: Windows Discussion Forum
Topic: SpaceMouse Enterprise screen tiff's not loading
Replies: 7
Views: 2205

Re: SpaceMouse Enterprise screen tiff's not loading

Hi Phil999, Is this a new machine? Desktop or notebook? Are you running any Citrix software on the O/S that doesn't work? Do the buttons/cap work in this condition? Does unplugging/replugging the SME fix the LCD? Is it the same driver version on each O/S? If not, what are the two driver versions? Th...
by jwick
Fri Mar 17, 2023 1:31 am
Forum: Windows Discussion Forum
Topic: how to break the mouse scroll input?
Replies: 3
Views: 1031

Re: how to break the mouse scroll input?

If the driver does not recognize your application, it will configure the Rx axis to send MouseWheel events. If you are the developer of the app, which API are you using to access the 3Dx device? If it is not one of our APIs, you need to tell the driver what you are using, and it will cooperate. If y...