@d-healey said in Please help with link midi controller mod wheel (cc1) to Knob:
MIDI learn
I got it, thank you so much David. Midi assign, it show up on preview GUI :)))
@d-healey said in Please help with link midi controller mod wheel (cc1) to Knob:
MIDI learn
I got it, thank you so much David. Midi assign, it show up on preview GUI :)))
Thank you everybody for your advice
I created Virtual Instruments with HISE, i would like to share this to MAC users too, but it's available on Window version. I see .vst/vst3 only.
I wonder if we can export plugins for MAC from Window.
Thank you your help!
If it's impossible, never mind! I will learn XCode and buy a Macbook later
@dustbro Thank you Author's instruction post reply, no, i don't skip step 10.
But almost code i'm manually adding, i think it wrong here, because some steps following you, when press ESC button, nothing display.
Eg. var reduction = Dynamics1.getAttribute(Dynamics1.CompressorReduction);
I don't see the yellow entry like you : Dynamics1.Dynamics1.CompressorReduction (yellow colour)..![alt
@d-healey i'm using 21.0 version, i follow your instruction and built it a few day ago. Sorry, am newbie and too less infom about script
My script:
const var Dynamics1 = Synth.getEffect("Dynamics1");
const var ScriptSlider1 = Content.getComponent("ScriptSlider1");
const var t = Engine.createTimerObject();
t.setTimerCallback(function()
{
var reduction = Dynamics1.getAttribute(Dynamics1.CompressorReduction);
reduction = Engine.getGainFactorForDecibels(reduction);
ScriptSlider1.setValue(reduction);
});
Thank you!
Thanks for everybody's help!
@d-healey said in Please help with link midi controller mod wheel (cc1) to Knob:
MIDI learn
I got it, thank you so much David. Midi assign, it show up on preview GUI :)))
Hello everybody! I'm newbie. I'm learning from d.healey channel a lot. Thank you!
Please help me this: How can link mod wheel to a knob, detail like this, i create a knob and want to link this to midi cc1 to control dynamic.
Thanks