Thread: TableNavigator
View Single Post
  #342  
Old 07-12-2006, 05:59 PM
Roland Roland is offline
Senior Member
 
Join Date: Mar 2005
Location: Norwich, UK
Posts: 2,703
Default Re: Version 2.01 beta

[ QUOTE ]
ZRUVPD is what the messagebox says. I think my computer just doesn't register my right joystick at all. I can't hotkey anything to it. I may just end up getting a new controller.


[/ QUOTE ]

That's fine, actually. Have a look at the documentation on Joysticks.

You can also try this script to see what you're joystick axis are doing:

#Persistent
SetTimer, WatchAxis, 10
return

WatchAxis:
x := GetKeyState("JoyX")
y := GetKeyState("JoyY")
z := GetKeyState("JoyZ")
r := GetKeyState("JoyR")
Tooltip X-Axis: %x%`nY-Axis: %y%`nZ-Axis: %z%`nR-Axis:%r%
return
Reply With Quote