Global LFO Intensity issue
- 
 Hey, I seem to be having an issue I would like to control two Global modulators that are linked to global lfo's. So one control on the UI affects the intensity of the two Global Static Time Variant Modulators I can do it with processor ID however I cant seem to do it with code //WTType// const var WaveformLFO1 = Synth.getModulator("Waveform LFO 1"); const var MoogWaveformLFO1 = Synth.getModulator("MoogWaveformLFO1"); inline function onSynthWaveLFO1Control(component, value) { WaveformLFO1.setAttribute(WaveformLFO1.Intensity, value); MoogWaveformLFO1.setAttribute(MoogWaveformLFO1.Intensity, value); }; Content.getComponent("SynthWaveLFO1").setControlCallback(onSynthWaveLFO1Control);
- 
 @cadrose Use setIntensity
- 
 @d-healey ahh Legend! Thanks! 
