Le 24/07/2014 17:24, Paum a écrit :
here is the example. I hope it is clear. 

_______________________________________________
Pd-list@lists.iem.at mailing list
UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hello,

As you can see in your text file (your patch), you can see :
#X msg 194 162 AudioReverb: 1 \, AudioVolume: 0.979798 \,

But the 4th line is :
#X msg 170 46 AudioReverb:\ 1 \, AudioVolume:\ 0.979798 \,
Your problem comme from that, your space between word and its value is separate by "\ " which is not interpreted by Pd as a separator. A true separator for Pd is " ".
So you have to remove "\" between word ans its value.
++

Jack