I have tried to add overlays on both the minus and plus side of this control. I have succeeded on the plus side but I don’t know how to do on the minus side. Can someone give me an example? For example:
This is the OSC 1 Balance parameter on Waldorf Blofeld.
F1 64
…
F1 2
F1 1
Middle
F2 1
F2 2
…
F2 63
You mean your are assigning overlays to a control via lua?
Or you talk adding adding manualy on overlay in the E1 editor?
I don’t think you can assign 2 overlay ID’ to the same control at the same time.
For typing in, I would expect you give the following 128 texts to the following values:
F1 64 => 0
…
F1 2 => 62
F1 1 => 63
Middle => 64
F2 1 => 65
F2 2 => 66
…
F2 63 => 127
Or you work with a formatting function you make yourself, where you create a string
“F” + var1 + " " +var2.
- Var 1 = “1” if value < 64 , = “” if value = 64 and is “2” otherwise.
- Var 2 = string of 64 - value when value < 64, = “Middle” when value = 64, and is string of value - 64 otherwise
I solved it easier though: I name the control “F1 BALANCE F2” instead of “BALANCE”:
1 Like
I just tested your F1 BALANCE F2 idea. This is very smart of you
1 Like