Search found 2631 matches

by jwick
Wed Jun 11, 2008 3:54 am
Forum: Windows Discussion Forum
Topic: I need Button Config drop-down list explanations
Replies: 22
Views: 27289

I've put a C# example on our ftp site:

ftp:/ *** ***
login: ***
password: ***




Moderator Edit: the sample code is no longer available from the FTP service. Please contact 3Dconnexion API Support if you need further assistance.
by jwick
Wed Jun 11, 2008 3:51 am
Forum: Developer's Forum for Windows
Topic: How to prevent crash if the driver isn't installed
Replies: 1
Views: 7008

Hi Jesperk, You need to put a try {} catch around the new TDx.TDxInput.Device() call. You will get a COMException if the driver is not installed. Don't make any other calls in this case. If the driver is installed but not running, you can make the calls on the TDx object. You just won't get any even...
by jwick
Tue Jun 10, 2008 9:51 am
Forum: Windows Discussion Forum
Topic: Logitech SetPoint for 3DConnexion?
Replies: 14
Views: 18747

Again, just to be clear, you just want to assign application-specific commands to the buttons on the device, not to movements of the 6DOF controller cap. I think you can already do this (see this thread).
by jwick
Tue Jun 10, 2008 8:44 am
Forum: Windows Discussion Forum
Topic: Logitech SetPoint for 3DConnexion?
Replies: 14
Views: 18747

Just to be clear: It isn't the installation procedure, the look and feel, the font, the colors, etc. that you like about SetPoint. What you like is the fact that it allows your Logitech mouse to work with every program that you run, by generating keystrokes that you can tune to your liking for each ...
by jwick
Tue Jun 10, 2008 6:27 am
Forum: Windows Discussion Forum
Topic: Still having USB weirdness with Spacepilot
Replies: 3
Views: 6369

You might get some help by posting to the RBC9 forum topic.
Some of those folks have had to uninstall it.
by jwick
Tue Jun 10, 2008 6:25 am
Forum: Windows Discussion Forum
Topic: Logitech SetPoint for 3DConnexion?
Replies: 14
Views: 18747

Hi uGLay,

What is it about SetPoint that you like? Please be very specific.

Jim
3Dx Software Development
by jwick
Wed Jun 04, 2008 2:09 pm
Forum: Windows Discussion Forum
Topic: I need Button Config drop-down list explanations
Replies: 22
Views: 27289

When you save something in the GUI, it is saved in %appdata%\3dconnexion\3dxware\profiles.

You can start with that .scg file, but you will need to change the EXECUTABLES entry to point to your executable.
by jwick
Wed Jun 04, 2008 1:31 pm
Forum: Windows Discussion Forum
Topic: I need Button Config drop-down list explanations
Replies: 22
Views: 27289

Hi Nick, I have bad news for you. Those files are nearly useless for you if you are using C#. Your best bet is to use the COM interface. We have not exposed a way for you to directly modify the LCD via that interface. Do you really not have any idea what should be displayed on the LCD ahead of time?...
by jwick
Tue Jun 03, 2008 8:05 am
Forum: Developer's Forum for Windows
Topic: Range of Space Pilot Axes
Replies: 1
Views: 6492

Hi Nick, The device itself will not generate anything larger than -512/+511, but there could very easily be other software in place below you that will change those max/min values. You need to clip the values if you need them clipped. You should look at the HID descriptor of the device to see the ra...
by jwick
Tue Jun 03, 2008 7:58 am
Forum: Developer's Forum for Windows
Topic: Strange Translation Values
Replies: 14
Views: 24110

The driver doesn't use DirectInput. I suspect the problem is in DirectInput.
by jwick
Tue Jun 03, 2008 6:30 am
Forum: Windows Discussion Forum
Topic: I need Button Config drop-down list explanations
Replies: 22
Views: 27289

Hi Nick, What language are you using? This older SDK is for C/C++ development. It certainly can be called from other languages, but that would be quite a pain. All I want to be able to do is call the SiSyncSetButtonName function and just change the name whenever I want. This function has it listed t...
by jwick
Mon Jun 02, 2008 9:42 am
Forum: Developer's Forum for Windows
Topic: Strange Translation Values
Replies: 14
Views: 24110

Hi Vijay, Yes, I also see what you are reporting. It seems to have a heart beat that causes it to misrepresent the values on a regular basis. It may have something to do with the time between polls. I'd have to look into it further to see if it is a problem in that demo or in DirectInput. I'd sugges...
by jwick
Mon Jun 02, 2008 7:11 am
Forum: Windows Discussion Forum
Topic: I need Button Config drop-down list explanations
Replies: 22
Views: 27289

Hi Nick, It's no bother. It's only a bother when you point out a problem we don't have a fix for <GGG> You need to use the SiSync functions to send data to the LCD. There is a GUISync_SDK demo that shows how to do this. There is extensive documentation on it that you will have to read (GUI Synchroni...
by jwick
Mon Jun 02, 2008 5:35 am
Forum: Windows Discussion Forum
Topic: I need Button Config drop-down list explanations
Replies: 22
Views: 27289

www.3dconnexion.com->support->driver downloads->SpaceTraveler->Archive->3DxWare SDK (32 or 64 bit)
by jwick
Sat May 31, 2008 7:23 am
Forum: Developer's Forum for Windows
Topic: Strange Translation Values
Replies: 14
Views: 24110

Hello vijay555, Do you have an example to show this to us? Do you get the same jittering when you are not at the extremes? If you are polling with DirectInput, make sure you don't poll faster than 60 Hz (30 Hz to be safe). If you poll faster than the device can send data (62.5Hz) you will get errone...