Hello!
Since I have quite many custom SynthDefs and it's hard to remeber all the custom arguments for a SynthDef I'm wondering if there is some way to query the SuperCollider server via OSC to return the arguments of a SynthDef.
I know that if I stored a SynthDef in a global variable x, then I can use
x.allControlNames;
to get an array of ControlName objects for which i can use the .name method to get the parameter name.
What I don't know how to do is how to query a running server for a specific SynthDef that is loaded on that server.
I found this document in the SC reference:
the /d_recv looks promising, but I don't know how to use this. Can anyone help?