Assigning controls or keys to the FMS cursor?
- paypal
- Posts: 2
- Joined: Sun Dec 22, 2019 6:27 am
- Location: San Francisco, CA
Assigning controls or keys to the FMS cursor?
So ideally I would like to be able to assign joystick inputs using FSUIPC, so that I can control the FMS cursor (left/right, push to select) with my joystick. If it's not possible to do it with FSUIPC, can I at least do it with keyboard controls?
-
- Posts: 1023
- Joined: Mon Sep 06, 2010 3:47 pm
Re: Assigning controls or keys to the FMS cursor?
Have you tried using the little joystick under the FMS in the 2d popup?
-
- Posts: 75
- Joined: Wed Apr 27, 2016 12:53 am
- Contact:
Re: Assigning controls or keys to the FMS cursor?
I've used the mouse macro function of FSUIPC. works well except the animated thumbstick remains in the direction of the last movement... but that doesn't disturb its function.
-
- Posts: 3446
- Joined: Sat Mar 13, 2010 7:38 pm
Re: Assigning controls or keys to the FMS cursor?
Working on adding this to the MVAMS
-
- Posts: 1023
- Joined: Mon Sep 06, 2010 3:47 pm
Re: Assigning controls or keys to the FMS cursor?
Ah, the joystick mouse routine is set up to send a value to a specific custom variable (either -1 or 1) when clicked, then send a value of 0 on button release to the same custom variable to allow the joystick to return to center position. For left movement of the joystick, this is the mouse script routine:
Code: Select all
<Click Kind="LeftSingle+LeftRelease+LeftDrag">
(M:Event) 'LeftSingle' scmp 0 == if{ -1 (>L:0x110EA,bool) 0x110EA (>L:EVENT,enum) 1 (>L:XMLSND2,bool) }
(M:Event) 'LeftRelease' scmp 0 == (M:Event) 'LeftDrag' scmp 0 == or if{ 0 (>L:0x110EA,bool) }
</Click>
Code: Select all
-1 (>L:0x110EA,bool) //left
1 (>L:0x110EA,bool) //right
1 (>L:0x110EF,bool) //up
-1 (>L:0x110EF,bool) //down
-
- Posts: 75
- Joined: Wed Apr 27, 2016 12:53 am
- Contact:
Re: Assigning controls or keys to the FMS cursor?
Thanks Bill.
I hope to see a Linda module for the King Air soon anyway so I can stick with the macros for now easily =)
I hope to see a Linda module for the King Air soon anyway so I can stick with the macros for now easily =)