VIPERWOLF57 Posted April 10, 2020 Report Posted April 10, 2020 (edited) *** Moved from FAQ to main Support Forum *** Hello, I just want to know when using FSUIPC in FSX how do you get the command text Shift + Ctrl + {whatever letter you place here} to take what happens is it always place thiis ( Ctrl + Shift + {whzttever letter i put}. Is there a way I can make this work Please I an new at this please bear with me . Thank You Edited April 10, 2020 by John Dowson Moved to support forum
spokes2112 Posted April 10, 2020 Report Posted April 10, 2020 I don't think with FSUIPC there is a way. Unlike, for instance, keyboard software. Some keyboard software includes a timer between each keypress while FSUIPC polls the keys differently. "Shifts" IE Ctrl/Shift/Alt etc.. are added up. (see ~page 23, FSUIPC# for Advanced Users.pdf) Example (using lua) for both CTRL-SHIFT-X and SHIFT-CTRL-X 1) CTRL-SHIFT-X = ipc.keypress(90, 3) 2) SHIFT-CTRL-X = ipc.keypress(90, 3) The same thing.. Roman
John Dowson Posted April 10, 2020 Report Posted April 10, 2020 The order that you press the Ctrl + shift is not important, they are just modifiers to the actual keypress. That is why the keypress codes using lua, which Ramon kindly showed you, are the same. So there is no way to change the order in FSUIPC, but it shouldn't matter. John
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now