Using multislider to control eq curve.
Hi all.
I am attempting to use multislider to control an eq curve in a vst~ plugin (Grm EQ)
I am having trouble getting the individual values for each slider out so they can be routed to the vst as parameter index's and values.
Can anyone suggest how I could do this?
All suggestions are welcome.
Thanks, Mike.
[unpack 0 0 0 0 0] if you have 5 sliders
if the plugin parameters are in consecutive order you can do this:
[multislider]
|
[listfunnel (offset)]
|
[zl slice 2]
|
[vst~]
Excellent. Thanks Frans! Exactly what I need.
Thanks Mudang. This method seems more efficient than what I was using. My only problem is i need a way to offset multisliders index ie. start at 16 instead of 0. Is this possible?
Thanks in advance, Mike.
argument to [listfunnel] for offset:
listfunnel 16
should do the trick.
Sorry, there was an error in my post:
should be [zl iter 2] instead of [zl slice 2] !