multiple parameters from one control

Splunk, maybe you should give scripting a try, it’s not that hard. For example, here’s a script of mine, which enables one knob to control multiple parameters (Cutoff, Resonance, Distortion) with different ranges each:

function onFilterCombiChanged()
	new_cutoff = FILTER_COMBI * FILTER_COMBI * 2
	new_resonance = 80 - (FILTER_COMBI * 0.8)
	new_distortion = 60 - (FILTER_COMBI * 0.6)
		
	this.parent:getZone():setParameter("Filter.Cutoff", new_cutoff)
	this.parent:getZone():setParameter("Filter.Resonance", new_resonance)
	this.parent:getZone():setParameter("Filter.Distortion", new_distortion)
end

defineParameter("FILTER_COMBI", "FILTER COMBI", 100, 0, 100, 1, onFilterCombiChanged)

With that script I can connect the FILTER_COMBI parameter to any knob on the macro page. If you want help on this, let me know.