Dump objects list from a patcher

Ad.'s icon

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.

Chris Muir's icon

File menu – List Externals and Subpatcher Files

Luke Hall's icon

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
Ad.'s icon

Great !!
Thank you .
ad.