How to store data from multiple separate patches into a single pattrstorage
I'm wondering if it's possible to store data collected by autopattr objects from patches to a single pattrstorage in a different patch. Pattrmarker sets up communication between pattr objects between patches, but I don't see any way to store data from multiple independent patches to a single pattrstorage.
possible?....or not?
Thanks, tbb
Have you tried pattrub ?
with [pattrmarker] you can access pattr data across multiple top-level patchers.
Hi, thanks for the responses. I think I need to clarify a little.
1) I'm aware that [pattrmarker] can communicate between [pattr] objects in separate patchers. I need to communicate between [autopattr] objects, and ultimately save the shared data to a [pattrstorage] object in a single patcher.
2) I don't think [pattrhub] communicates between separate patchers.
If I'm missing your points, could you provide an example patch?
Thanks again, tbb
I am not aware that this can be done with [autopattr]. You'd have to mark the patchers with [pattrmarker] and the put a [pattr] bound to the parameter you want to store inside the patch where your [pattrstorage] is (for each param one pattr)
[pattr @bindto ::patch2:scriptingNameOfTheObject]
this way you can 'import' all the parameters into on patch and store them.
Hopefully someone proves me wrong ;)