Dump objects list from a patcher
Hi,
I'm not sure but I think it's possible to know every objects used in a patcher, would you know the way to do it ?
Thx,
Ad.
File menu – List Externals and Subpatcher Files
And if you want to see them in your patch you could always use a javascript like this:
var objs = [];
function bang() {
objs = [];
this.patcher.applydeep(recurse);
for (i=0; i
Great !!
Thank you .
ad.