Hi, if you're not setting with Pbind there will be the default args and you can get them like this: SynthDescLib.global[\default].controlDict.collect(_.defaultValue) // equivalent SynthDescLib.global[\default].controlDict.collect { |x| x.defaultValue } // or SynthDescLib.global[\default].controls.collect { |x| x.name -> x.defaultValue } So there's no need to track the synths (except you're somehow controlling them otherwise) Regards Daniel ----------------------------- http://daniel-mayer.at ----------------------------- Am 15.12.2018 um 23:59 schrieb sam@xxxxxxxxxxx: Hi everyone, |