[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[sc-users] Simple OSC question



Hello,

I am trying to set up my own OSC commands in SC3, but I can't get it to work.
Can someone tell me why, after executing

(
   s=Server.local
   s.boot
)

(
o = OSCresponder(s.addr, '/anything',
           {arg time, responder, msg;
           "anything".postln;
       }).add;
)

then executing

s.sendMsg("/anything")

it says FAILURE /anything Command not found?  How can I create my own commands with an OSCresponder?