Thrustmaster Target Assistance

Greetings, how can i accomplish the following in target...

After holding down the cms
Button for 4 seconds, send (Num_3)

Thx,

David
 
I must admit that I don't know what 'cms' is, but anyway

If 'cms' is a event that you want to happen before Num3, its:

MapKey(WhatEverDevice,WhatEverKey,CHAIN(DOWN+cms,D(4000),UP+cms,PULSE+KP3)))

if 'cms' is a button that you want to hold for 4 seconds before something happens, its:
MapKey(cms-device,cms-button,TEMPO(0,PULSE+KP3,4000))


'KP3' is KeyPad-3
'4000' is 4000 miliseconds
 
Ah, okay. Than its

MapKey(YourJoystick,H4*,TEMPO(0,PULSE+KP3,4000))

0 is what happens if you push it less then 4 seconds, in this case nothing

* p is not a valid hat direction. Its either L,R,U or D
 
Back
Top Bottom