Hi,
|; |$0-cnv_in_01_01 vis_size 98(
but if I click on the message only a object like [r 0-cnv_in_01_01] (without the "$") receive the message.
Seem that the "$" come deleted from the sender.
How I can dynamically create a message for send lists to a canvas that has a "receive-symbol" like "$0-cnv_in_01_01" ?
The solution is to create a float $0, to link it to your message box and to bang it at startup :
[loadbang]
|
[f $0]
|
[pack f f]
|
[$2-cnv_in_01_01 vis_size 98 $1(
You can now receive the first value of the [pack f f] object with : [r $0-cnv_in_01_01 vis_size 98]
Cheers,
Nicolas