Jump to content

SGT Coyle

Members
  • Posts

    1388
  • Joined

  • Last visited

Everything posted by SGT Coyle

  1. Anyone know the travel limits of the stick?
  2. Pg 21 of the TARGET Script editor. I use it to great effect to operate the Auto Pilot in the Harrier. //Autopilot Engage/Diengage********** MapKey(&Throttle, APENG, TEMPO( Altitude_Hold_On_Off_Toggle, Automatic_Flight_Control_On_Off_Toggle));//
  3. I think they have added this with a bunch of other encoders and switches that sow being worked on, on the bug tracker. mcmike, welcome to the club.
  4. Supper Frog!
  5. Awesome, Thanks. Decided to give Voice Attack a try again, with VR, and saw your new version of VAICOM . DL'ed the pro version, with CHATTER and AIRIO, last night and wrestled with the PTT setup. Figured it out and immediately started thinking of what can I get out of this. A lot is the answer. I will be jumping into the manual full bore this weekend. Thanks for your efforts and good hunting.
  6. Can this be used to get the JTAC/AWACS to repeat last message? Ok, that was a dumb question. What I think I meant was, can "Crystal Palace" (AOCS) repeat JTAC/AWACS call? Also, can "Crystal Palace", give me my own aircraft location in Lat/Long, and Magnetic Variation of the theater?
  7. So what is the price? and how to order?
  8. I was looking the other day. Virtually none. See what I did there.:smilewink: I took a look with lasso. I setup OD to open when I start Oculus Tray Tool, and close when OTT is closed. OTT stops the Oculus Service that's needed for Dash to run. Otherwise Dash runs as long as the HMD is pluged in.
  9. Yeah! Baby, yeah!
  10. Yes, +1 on both. It's the little things that improve quality of life.
  11. Just did the Navigation mission. Excellent. The information was organized and presented well. I now have a great understanding of the system and how to use it.
  12. IDK if it's bug or just not implemented, but when I rearm to all flares, no chaff, I still have 60 chaff / 120 Flares showing in the ECM page. What's actually got loaded I'm not sure. Anyone else have this?
  13. Increase my enjoyment? Yes! Make me a better pilot? No, there's no hope for me.
  14. .tmc files are made in TARGET Script Editor, not the GUI.
  15. Any movement on this OP?
  16. Paste this into a new .tmc and save as whatever.tmc, and compile and run it. That will kill the lights. include "target.tmh" //program startup int main() { if(Init(&EventHandle)) return 1; // declare the event handler, return on error //add initialization code here // Init Lights ActKey(PULSE+KEYON+LED(&Throttle, LED_INTENSITY,0)); //set Throttle backlight power to middle // set Throttle backlight power to low //ActKey(PULSE+KEYON+LED(&Throttle, LED_ONOFF, LED_CURRENT+LED1)); //set LED 1 OFF //ActKey(PULSE+KEYON+LED(&Throttle, LED_ONOFF, LED_CURRENT-LED2)); //set LED 2 OFF //ActKey(PULSE+KEYON+LED(&Throttle, LED_ONOFF, LED_CURRENT+LED3)); //set LED 3 OFF //ActKey(PULSE+KEYON+LED(&Throttle, LED_ONOFF, LED_CURRENT-LED4)); //set LED 4 OFF //ActKey(PULSE+KEYON+LED(&Throttle, LED_ONOFF, LED_CURRENT+LED5)); //set LED 5 OFF } //event handler int EventHandle(int type, alias o, int x) { DefaultMapping(&o, x); //add event handling code here }
  17. Thanks, thought it would be like that. No worries, it seems to be working. RightStuff, you thinking of the "Device Analyzer"? I see all the buttons in the analyzer, just not in Win10 controller test app. When I was trying to assign buttons in game settings, none of the buttons worked. I figured out that I needed to use the drop down menu for joystick buttons.
  18. When I run this should I see 120 DX buttons in the windows game controller testing window? I only see the 32 as normal.
  19. +1 on everything LeCuvier said. Please make resolution of this bug a priority.
  20. I bought all four lengths (7.5, 10 , 15, 20) back around Christmas, from Sahaj. He had a good deal going. I just got around to playing with them. Currently I have the 7.5, 15, and the 20 on with the base on the floor. Just ordered the blue spring. What are peoples thoughts on a comfortable length? I'm still experimenting.
  21. I use it for landing gear lever.
  22. MapKey(&RMFD,OSB1, CHAIN(PULSE+'a', D(), PULSE+L_CTL+'3', D(), PULSE+L_CTL+'5')); Look at pg 23 in the TAGET Editor Basics manual. I think your gonna need to have built in delays and pules the commands. Try that and see if it works for you.
  23. 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.
×
×
  • Create New...