Question about the iteration
Let's say we have a iteration module that spits out the stream of nr's ranging from 1-8
I want to use these to (rapidly ) change the appearance of a multidisplay (with 8 elements and thus 8 separate x1-x2,y1,y2 ,rgb values for each element )
For that , the index of the element needs to be selected first , and then the parameters ( the order of the parameters are not important as long as they appear after the index is selected )
So ..(long rant ) my question :
If the stream of nr's from the iteration go out the first outlet of the order , it should happen like this ( disregarding outlet 3 for purposses sake )
outlet 1 : value 1
outlet 2 : value 1
outlet 1 : value 2
outlet 2 value 2
outlet 1: value 3
outlet 2 : value 3
And NOt like this
outlet 1 : value 1,2,3,4,5,6,7,8
outlet 2 : value 1,2,3,4,5,6,7,8
If it would happen like thelast example we can't possible adjust the parameters for each separate element of md .module .
I' m a bit at loss
It's also mighty difficult to debug things like these , the console view in other packages are a godsend