Using multislider to control eq curve.

Mikelib's icon

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.

Frans-Jan Wind's icon

[unpack 0 0 0 0 0] if you have 5 sliders

mudang's icon

if the plugin parameters are in consecutive order you can do this:

[multislider]
|
[listfunnel (offset)]
|
[zl slice 2]
|
[vst~]

Mikelib's icon

Excellent. Thanks Frans! Exactly what I need.

Mikelib's icon

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.

seejayjames's icon

argument to [listfunnel] for offset:

listfunnel 16

should do the trick.

mudang's icon

Sorry, there was an error in my post:
should be [zl iter 2] instead of [zl slice 2] !