1 Knob for several value
-
@d-healey said in 1 Knob for several value:
mais je vois pourquoi cela ne fonctionne pas. Pouvez-vous me
if(Knob1 == 0)
if(Knob1 == 1)
.....
.... ?
I'm going to get carried away again ^^ -
I'm going to get carried away again ^^
Hopefully :)
if(Knob1 == 0)
if(Knob1 == 1)This would (almost) work, but this isn't what you wrote.
An if statement is always performing a comparison and checking if the value is true (true in this case means not 0).
So what you wrote
if (0)
will be false
if (1)
will be true
if (2)
will be true
etc.You need to write a comparison instead of just writing a value.
For example you can take the knob's value which is passed into the callback as the
value
argument.if (value == 0) {} if (value == 1) {} if (value == 2) {}
Another way you could do this is with a
switch
statement, and another way is to store the values you want to set in an array and use the knob's value as the array index. -
ah yes I understood, however how now to control the combo box from the knob?
the values of the combo box are 0 1 2 and 3? for the different lines?HiseSnippet 1042.3ocuVEtaaaCDlx1rqVcoHAn+uB9WJ.YFxoocEXXntVQtvnKoNyYAa+piVhNlHRjtRTYwqn.6UYOB8kn8MXOG6MX6HkjkbpqSlAVc.BDu6938cGOdGGFK7oIIhXjQySmOihL9Z7n4b4T2oDFGM3Pjw8wGQRjzXqLQ8lOijjPCPFF0egRfQyFH8u+9Y8HgDtOsTDBclf4S+AVDSVJcX2WxBC6SBnmxhpX8AcG3K3thPQJvm5XGzLh+EjyoGSTlUCiLtiW.SJhGIIRZBxnQOQv7QSE+FOy9yXIrwgT0hNnQvFkItuHLPwXkTj6TVXvvh3NAA6xvxrP8rrvCvGwBXKjWlM1VqvpDQ07gQs0QuN2L8bVE8LpPuFYzaG7H+X1LYoFE2tGd.GNnlPfifpzJyVTs+rF1U.VvksiHWP6GCKVfv9INN6Y8XGmc+tsLK9CNNRjVWRhs7Nw56szUFsOmJ8lLg5Ksa4cRKk4kl8RtXbGvxB+.15JhlI3vB6VZssJbPIJ2deVHt8ZURHFOjwoVSR49RlfaAEK8TvhEg19EX1C1xvT5taY91sLalw8yHgfGVXhxGCjznSoWIsUaeSuSZmPkOWJiYiSkTaXc+X5a1KCaFCdm9+edZp1gb13RBCGC0t1UX35BCch4Fhj0Sf7T6p4P0sWQiJd9Xgj9Jt8tlu0ro46LsttpISVot7MKjFuR0p60wqCnMOMZLMtHBKLDJvW9Fz8tc2f7yxIULTvGvYxWMilutZKfhntPqCZQvVUTYLVUpNzVgYkh9zqvn7yL3xbsbyASk5qx2O+p7nPV.MFw.N9UX8AFRmapzLsK55f2NGLTHLVzSbkFdCrauqic6tneZvgDIQ0OImM.CmQikLUd13P5kPi5rtKMwGRStPJlooadIFPqajvWgLvF8A2MW8wGfOfAGyFw9c.FF2osCJhbUIota2HherXQPsC9Xg0QUEgp396bSgr16uuv6VvGZugMTtiAW2STjeeGyCbLepiYGG3n5SasBM3EAogD4xc8Ui5xU.ExK0dU0BkmvjyqNJ7+vn.ma8jpaKc2AOjI8mtZ9VaE7UUX9+LeyGrtENa1QIYaf6+yegmhZVTm6lFeI06M47v6jk3wwoQ8Ygv3wDUQjADN8H7.m7r1e7wG1tqRPmxz3unEretfecxj+5YJAOZ42HwCNn5Ey98O0iSf.JK3qubvW+1E7qH2+ihTIie9QDXll5Z.DNifGV4SgTOmSC0QUMUyor0Np0JJMhpiRrw+.+xU1oHEnT1oP4WDen6Q7Z+rNBpSx6pk.wMW+rvlXcKCqE8KwXGUmF3YZu12Wct9McPnUiY+M.yi1.LGrAXd7Ff4Ia.lucCv7z0hQ8B4mmJEQY8d.AC8zydLLpToi9W.FpRVgA
-
Did you try setting the combobox's value from the knob's callback?
-
I tried CB.setValue (1);
CB.changed ();
but I am sure it is a beautiful mistake. -
-
what did you have against the number 1? ^^
no it obviously has to change but I admit that I don't know -
@yall Do you want it to change to the knob's value?
-
inline function onKnob1Control(component, value)
{
if(value == 0)
{
CB.setValue(1);
}if(value == 1) { CB.setValue(2); }
};
Content.getComponent("Knob1").setControlCallback(onKnob1Control);
i understand i know
-
@d-healey
I just got there, I didn't put the .changed
thank you .
you won 1 week of vacation with me in the south of France (facing the sea;)) -
Well done!
I'll show you a slightly more efficient way that will only use one line in the callback
CB.setValue(value + 1);
-
-
even simpler. yet these are things that I see often, I understand them but I don't have the reflex to apply them correctly.
thanks a lot
-
@yall said in 1 Knob for several value:
I don't have the reflex to apply them correctly.
It just takes practice. Read lots of code and write lots of code and you'll pick these things up.
One tip, if you find you are writing the same thing multiple times then there is probably a more efficient solution.
-
@d-healey yes I try more and more to write the codes with what I learn rather than doing stupid copy paste. I am creating a github to host my projects in order to sell them with the open license and I will send you all of this. you will surely be surprised for a little beginner Like me ^^