Linking with "configuration" pins?

Is it possible to set the values of configuration pins?

I have 2 inputs on my patch, one is a spead and the other is an index. How can I limit the value of index to the spread count?

How match the number of rows of a IOBox (String) to it’s input count?

jerome

I have 2 inputs on my patch, one is a spead and the other is
an index. How can I limit the value of index to the spread count?

the vvvv way of doing this would be using MOD to make sure that larger or smaller values get autmatically wrapped back to the valid ones. so you could do things like using a LFO to just repeatingly going through all the values, or enter -1 to get the last slice etc. GetSlice does this already, so you probably doesnt need to care about this issue already. Map (Value) might also be a god choice when set to Wrap mode.

How match the number of rows of a IOBox (String) to it’s
input count?

configuration pins can not have connections. this is by design. You might be able to use SetPatch to send a message to vvvv to change the configuration pin for you.