poly~ and coll issue
Hi, so I'm recording x and y values from the lcd object into a pair of colls via poly~ and a second pair (named the same as the other colls) then spit out the data controlling various things.
The trouble I'm having is that even though a new target for the poly~ is selected each time I draw a new line in the lcd, the data is always the same in all the colls on every poly~ target.
Is this because I have named the coll and is there a way round this? Help very much appreciated.
you seem to not really get how named coll work - anyway yes, you need a different named coll each time, so either use the #0 argument to format the name of each coll in each instance, or use [thispatcher] to have a different instance number each time. Or don't name your coll at all.
Thanks, I actually figured out shortly after posting this :p
Thanks again.