2 summary:: Write to a shared control bus.
3 related:: Classes/SharedIn
4 categories:: UGens>InOut
10 SharedIn has been deprecated. Synchronous access to busses on local servers is possible via
11 link::Classes/Bus#-getSynchronous:: and link::Classes/Bus#-setSynchronous::
15 Reads from a control bus shared between the internal server and the SC
16 client. Control rate only. Reading from a shared control bus on the
17 client is synchronous. When not using the internal server use the get
18 method of Bus (or /c_get in messaging style) or
19 link::Classes/SendTrig:: with an link::Classes/OSCFunc::.
28 The index of the shared control bus to write to.
31 argument::channelsArray
33 An Array of channels or single output to write out. You cannot
34 change the size of this once a SynthDef has been built.
42 // only works with the internal server
48 SynthDef("help-SharedOut", {
49 SharedOut.kr(0, SinOsc.kr(0.2));
54 s.sendMsg(\s_new, "help-SharedOut", x = s.nextNodeID, 0, 1);
55 s.sendMsg(\n_trace, x);
57 // poll the shared control bus
60 s.getSharedControl(0).postln;