hello,
problem: i want to send a message to the dyn~ object via OSC, the string looks like message="newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0"
when dyn~ recieves the message it says:
dyn~: message unhandled - inlet:0 args:0 symbol:newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0
if i send the same string via a pd message object, it works
any help would be appreciated
bs z
moin z,
looks like you're trying to send not 1, but 3 messages:
newobj . o1 osc~ 220 conn 0 o1 0 conn o1 0 0
Pd message-box parser handles commas as message-separators, while the OSC parser does not. So if you're sending just a single string with commas in it (as it would appear from your error message), things are bound to go wrong. Sending 3 sequential messages ought to work, though.
marmosets, Bryan
On 17 May 2004 at 14:35:51, z@null2.net wrote:
hello,
problem: i want to send a message to the dyn~ object via OSC, the string looks like message="newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0"
when dyn~ recieves the message it says:
dyn~: message unhandled - inlet:0 args:0 symbol:newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0
if i send the same string via a pd message object, it works
any help would be appreciated
bs z
PD-list mailing list PD-list@iem.at to manage your subscription (including un-subscription) see http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hi, did you generate the message with py/pyext? Instead generating a single message you should rather send 3 separate ones.
best greetings, Thomas
----- Original Message ----- From: z@null2.net To: pd-list@iem.at Sent: Monday, May 17, 2004 2:35 PM Subject: [PD] dyn~ question
hello,
problem: i want to send a message to the dyn~ object via OSC, the string looks like message="newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0"
when dyn~ recieves the message it says:
dyn~: message unhandled - inlet:0 args:0 symbol:newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0
if i send the same string via a pd message object, it works
any help would be appreciated
bs z
PD-list mailing list PD-list@iem.at to manage your subscription (including un-subscription) see http://iem.at/cgi-bin/mailman/listinfo/pd-list
hello,
did you generate the message with py/pyext?
no, did it with the python osc module
Instead generating a single message you should rather send 3 separate ones.
i splitted it up now, but still have the same problem :
print and dyn output ->
print: newobj . o1 osc~ 220
dyn~: message unhandled - inlet:0 args:0 symbol:newobj . o1 osc~ 220
print: conn 0 o1 0
dyn~: message unhandled - inlet:0 args:0 symbol:conn 0 o1 0
bs z
best greetings, Thomas
----- Original Message ----- From: z@null2.net To: pd-list@iem.at Sent: Monday, May 17, 2004 2:35 PM Subject: [PD] dyn~ question
hello,
problem: i want to send a message to the dyn~ object via OSC, the string looks like message="newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0"
when dyn~ recieves the message it says:
dyn~: message unhandled - inlet:0 args:0 symbol:newobj . o1 osc~ 220, conn 0 o1 0, conn o1 0 0
if i send the same string via a pd message object, it works
any help would be appreciated
bs z
PD-list mailing list PD-list@iem.at to manage your subscription (including un-subscription) see http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hi,
dyn~: message unhandled - inlet:0 args:0 symbol:newobj . o1 osc~ 220
the problem seems to be that the whole message (which is a list of atoms) has been encoded into a single symbol. If there's no other way to generate the message i'm sure there are some zexy objects to split the symbol into separate atoms.
best greetings, Thomas