Hi,
After reading alot in this forum, and reading the user docs and adv user docs, I began really playing with things.
In FS9, with FSUIPC 3.129:
I am attempting to setup [buttons] to change the view forward twice by sending two (2) 's' keypresses, so that the user can push a joystick btn and change easily from the VC view to the spot view and back.
This worked:
[buttons]
0=R0,7,C1001,0
1=U0,7,C1002,0
2=P0,0,K83,8
3=P0,0,K83,8
4=U0,0,K83,9
5=U0,0,K83,9
with the user holding the 'trigger' (j0, b0), and then I wanted to try a toggle like this:
[buttons]
0=R0,7,C1001,0
1=U0,7,C1002,0
2=CP(-j0,b1)0,0,K83,8
3=CP(-j0,b1)0,0,K83,8
4=CP(+j2,b1),0,K83,9
5=CP(+j2,b1)0,0,K83,9
which also seemed to function properly (but now I see an error). I was using this to have the btn b1 function as a 'control' on the 'direction' (forward with 's', backward with shift 's')
However, when I then advance to try this:
[buttons]
0=R0,7,C1001,0
1=U0,7,C1002,0
2=CP(+j0,b1)0,0,K83,8
3=CP(+j0,b1)0,0,K83,8
so that pressing the 'trigger' will only provide the view switch when the joy0 btn1 is held, it functions regardless of the btn1.
What am I doing wrong?
Patrick