Page 1 of 1

FS force and RealTrim

Posted: Tue May 25, 2010 7:48 pm
by liazkam
I want to use RealTrim app (google it) in order to use the mouse wheel as trim control. Can I do it from FS force 1?

Posted: Wed May 26, 2010 2:48 am
by RussDirks
RealTrim is an ingenious little program design for mechanical joysticks. You shouldn't use it in conjunction with a force feedback joystick and FS Force. Unfortunately FS Force is not able to read input from the mouse wheel.

Posted: Mon Jun 07, 2010 10:18 pm
by crim3d
You can easily do all kind of inputs binding with Glovepie. What you want could be done with a simple script like this:

Code: Select all

joy.button5=Released(mouse.wheelup)
joy.button4=Released(mouse.wheeldown)
This means that whenever there is a mouse wheel event in the up direction, a press of the button 5 of the joystick is generated. And a press of the button 4 when down.

Or using a ppjoy virtual joystick, you can set the value of a joystick axis like this:

Code: Select all

ppjoy.Analog0=MapRange(mouse.DirectInputZ,-1.0,1.0,-10000,10000)