Man, now i cant remember how to be able to get the VS 2017 version , I did manage it somehow last time .
Do you guys suggest that rather then 2017 still ?
I can see the community version , can I use that ?
Comm.jpg
I finally got to do what I wanted with lfo modulator read on a filter. the cuts of the lfo are clear and precise while those on the volume are not. yay
@yall Put all sync values in an array such as const var tempoValues = ["1/1", "1/2D", "1/2", "1/2T", etc...];
Then it depends if you use 2 different knobs (one for freq and another for sync values) or a single knob changing its properties (min, max, stepSize...)
In the knob callback, get the array index when in sync mode using the knob value for the label Label.set("text", tempoValues[value]);
@Eskano Of course, just add a button into the panel, and in the button callback, just use Panel.showControl(false);
Well, if you look at the code, you can see that the panel is showing after 3 sec, then the timer stops in its own callback, hence will not popup again if you close it. (unless you tell him to do so in the close button callback...)
By instance, do you mean plugin or panel instance?
The panel will show again after 3 sec when you relaunch the plugin. If you want it to appear only once when you launch the plugin for the first time and not after that, you'll need to store a flag in an external file using dumpAsJSON/loadFromJSON.