Hi there, i just tried to crate a small TouchOSC controller for my
Proxyspace
live coding, it work only outside Proxyspace, someone can help me
about?
Thanks a lot!
(
s.quit;
s=Server.local;
s.options.blockSize=512;
s.boot;
p=ProxySpace.push(s);
)
(
(OSCdef.new(\ctrl1,{arg msg, time, addr, port;~ctrl1 =
(msg[1]);},'/1/fader1'));
(OSCdef.new(\ctrl2,{arg msg, time, addr, port;~ctrl2 =
(msg[1]);},'/1/fader2'));
(OSCdef.new(\ctrl3,{arg msg, time, addr, port;~ctrl3 =
(msg[1]);},'/1/fader3'));
(OSCdef.new(\ctrl4,{arg msg, time, addr, port;~ctrl4 =
(msg[1]);},'/1/fader4'));
(OSCdef.new(\ctrlx,{arg msg, time, addr, port;~ctrlx =
(msg[2]);},'/1/xy1'));
(OSCdef.new(\ctrly,{arg msg, time, addr, port;~ctrly =
(msg[1]);},'/1/xy1'));
);