coll numbers and pack them with ,
I would like to store a series of numbers and pack them together and to add a comma ( , ) sign after each number.
I tried with the object append and comma: append ,
but the comma sign added only after the last number stored in the coll and not after each number.
how can I add comma after each number ?
thanks.
I'm not exactly sure what you want to do, but if you want to enter coll-specific formatted entries you can dispense with the comma;
ie if you want to have the entry "1, 345 kerblewey; " inside a coll
you just have to send the message (1 345 kerblewey) to coll and it'll store it appropriately...
I want to store in coll the number 3 5 7 9 12 then the numbers 4 8 9 55 32 (lets say)
when I pack them into list I want to see 3, 5, 7, 9, 12
and 4, 8, 9, 55, 32
is it possible ?
the comma in a coll has a special function-- it separates the address from the data--so you can't put the commas in there as part of the data if you want to put it in a coll.
Commas also have a special meaning in max in general-- they mean "delineate"-- in other words, a comma between two numbers in a message box splits it into two separate messages.
You need to be more forthcoming in what you want to do -- why do you need commas between the numbers-- whats the purpose of it?

the come between the numbers is for midi note. I want to generate a chord of 4-5 numbers to play it together this is why I need the comma after each number.
You can store the notes without comma and put [iter] on the coll output.
Thanks! :)