Hello Claude !!!
On my touchosc layout, i created a + and - nudge level. Actually, it is 2%. Would there be a way to have an additional one that would have another % considering that this % comes from LXConsole where you have a single possibility.
I'm assuming the answer will be no but maybe you can think of something.
Thank again !
Pace
Nudge level
Re: Nudge level
You should be able to create a button in your TouchOSC layout that increases or decreases selected channels by any percentage.
The address pattern should be as follows:
/cmd.lxconsole/@+10
(Increases channels on the command line by ten percent)
similarly
/cmd.lxconsole/@-05
will decrease channels entered on the command line by five percent
Another way of doing this may be to add support for TouchOSC encoders so that selected channels can be adjusted like scrolling with a mouse wheel or trackpad. That's for a future version. The above should work with the current latest build.
The address pattern should be as follows:
/cmd.lxconsole/@+10
(Increases channels on the command line by ten percent)
similarly
/cmd.lxconsole/@-05
will decrease channels entered on the command line by five percent
Another way of doing this may be to add support for TouchOSC encoders so that selected channels can be adjusted like scrolling with a mouse wheel or trackpad. That's for a future version. The above should work with the current latest build.
Re: Nudge level
Hi Claude !!!
/cmd.lxconsole/@+xx and /cmd.lxconsole/@-xx works. But i'd like to notice to TouchOSC users that they have to go to TRIGGER and make sure to select RISE (or False) and not ANY otherwise they would end up with twice the % they expect.
Thanks again for your help !
Pace
/cmd.lxconsole/@+xx and /cmd.lxconsole/@-xx works. But i'd like to notice to TouchOSC users that they have to go to TRIGGER and make sure to select RISE (or False) and not ANY otherwise they would end up with twice the % they expect.
Thanks again for your help !
Pace
Re: Nudge level
TouchOSC sends an OSC message when a button is pressed and released.
In the latest build of LXConsole, you can use
/lxconsole/touchosc/cmdbtn/@+xx or /lxconsole/touchosc/cmdbtn/@-xx
a) These will only trigger on a press where TouchOSC sends a floating point argument of 1.0
b) The address pattern is general and any command line command that can be composed by legal OSC address pattern characters can follow /lxconsole/touchosc/cmdbtn/
ALSO
You can use /lxconsole/touchosc/encoder to use an encoder to scroll selected channels up and down.
In the latest build of LXConsole, you can use
/lxconsole/touchosc/cmdbtn/@+xx or /lxconsole/touchosc/cmdbtn/@-xx
a) These will only trigger on a press where TouchOSC sends a floating point argument of 1.0
b) The address pattern is general and any command line command that can be composed by legal OSC address pattern characters can follow /lxconsole/touchosc/cmdbtn/
ALSO
You can use /lxconsole/touchosc/encoder to use an encoder to scroll selected channels up and down.