Using joystick buttons for mouse clicks

This is the place for comments, criticisms and even the occasional compliment related to the SmartNav drivers and profiler. Also the place to discuss and review support issues.
Post Reply
Nightblade
Posts: 1
Joined: Tue Oct 02, 2007 2:20 am

Using joystick buttons for mouse clicks

Post by Nightblade »

Unless I'm very much mistaken, SmartNAV3 can't remap joystick buttons to mouse buttons. :(

However, I found a nice little free utility that can do it, and I thought I would mention it here.

AutoHotkey

You'll also need the script that reports which joystick button is being pressed:

Joystick Test Script (Save As)

Here's the script I'm using at the moment. It binds joystick button number 12 (one of the buttons on the base) to left-mouse-button.

Joy12::
Send {LButton down}
KeyWait Joy12
Send {LButton up}
return

Easy way to make a floor-clicker out of an old joystick. :)
Post Reply