Thats awesome. Makes perfect sense now that the knowledge is there. : ) as with most things.
Thanks again
Thats awesome. Makes perfect sense now that the knowledge is there. : ) as with most things.
Thanks again
Certainly here it is - this is what is generated by using the right click create method, and then the right click assign modulator parameters method.
ON INIT -
Content.makeFrontInterface(500,300);
const var Reverb = Content.addKnob("Reverb", 50, 38);
const var Delay = Content.addKnob("Delay", 187, 36);
const var SimpleReverb = Synth.getEffect("Simple Reverb");
const var Delay = Synth.getEffect("Delay");
-----------------------------------_
ON UI -
function onControl(number, value)
{
switch(number)
{
case Reverb:
{
SimpleReverb.setAttribute(SimpleReverb.WetLevel, value);
break;
}
case Delay:
{
Delay.setAttribute(Delay.Mix, value);
break;
}
};
}
Changing the dropdown on the filter doesn't always change the frequency graphic unless its LPF or HPF, all the others seem to offer no update.
Also adding modulation to the FREQ seems to visually work, but offer no audio modulation.
THANKSSS - so new here, may annoy everyone with my questions, but I will love you all in the end for it.
If I assign a dial to the delay it just hides the entire interface - looks like it throws up some incorrect code.
I'm following the video tutorial, I add the reverb dial, all is well, then I add a delay mix dial and - things just die on me.
Hi,
I've been watching the new tutorial video, and was wondering, how on earth do you get the auto complete script function to come on, cant seem to get it to pop up like the video at all.