Nielsen
September 14, 2021, 11:44pm
1
Hello,
I am trying to create some type of indicator that will turn on or become visible only whenever a fader is touched or moved, then go away when the fader is released. Working with Lemur previously I was able to accomplish this using the fader's X property. But I'm struggling to find a similar solution in OSC.
Any help will be greatly appreciated!!
Udo
September 15, 2021, 1:43am
2
Hi Nielsen,
You can do this with the 'touch' parameter. See also the documentation . For example:
if (touch !== undefined) {
touch === 1 ? set('indicator', 1) : set('indicator', 0)
}
I made an example where change is indicated in three ways.
faderTouchIndicator.json (4.2 KB)
2 Likes
Nielsen
September 15, 2021, 9:14am
3
Thank you Udo!!
This works perfectly, exactly what I was looking for. I greatly appreciate you taking the time to reply and the example.
Udo
September 15, 2021, 3:11pm
4
You're welcome. Glad I could be of help.
Mike1
April 13, 2023, 10:44pm
5
Is it possible to create several led indicators that only light up when you hit a certain velocity?
So if the fader range is 0-127 have the first led light up when the fader is touched, 2nd led lights up when the fader hits 10 etc
Udo
April 14, 2023, 1:57pm
6
Like a bar graph? That's possible:
faderTouchMultiIndicator.json (15.3 KB)
Or perhaps this variant:
faderTouchMultiIndicatorB.json (18.1 KB)
1 Like
Mike1
April 14, 2023, 4:21pm
7
That’s exactly what I was trying to achieve. Thank you