dtdionne Posted April 6, 2019 Posted April 6, 2019 Greetings, how can i accomplish the following in target... After holding down the cms Button for 4 seconds, send (Num_3) Thx, David
SGT Coyle Posted April 6, 2019 Posted April 6, 2019 MapKey(&Joystick,H4P, TEMPO( 0, KP3, 4000));Syntax: TEMPO(key1, key2, delay) delay is optional (500 milliseconds is a good value). pg 20 TARGET basics manual Example: MapKey(&Joystick, TG1, TEMPO('x', 'y')); //short press X, long press Y MapKey(&Joystick, TG1, TEMPO('x', 'y', 1000)); //if pressed for more than 1 second MapKey(&Joystick,H4P, TEMPO( 0, KP3, 4000));//if pressed for more than 4 sec Num3. The short press will do nothing. Zero removes the short press without leaving it blank. So if you only want a long press, there you go. Night Ops in the Harrier IYAOYAS
Recommended Posts