On Jan 11, 2016, at 1:31 PM, pd-list-request@lists.iem.at wrote:From: Jonathan Wilkes <jancsika@yahoo.com>Subject: Re: [PD] finding out if an abstraction instance existsDate: January 11, 2016 at 12:24:44 PM MSTTo: IOhannes m zmölnig <zmoelnig@iem.at>, "pd-list@lists.iem.at" <pd-list@lists.iem.at>Reply-To: Jonathan Wilkes <jancsika@yahoo.com>I can think of two ways:1) something like canvas_find method -- walk through every toplevel looking for a canvas_class of the relevant filename/binbuf/whatever2) take the abstraction's name, add "pd-" to the front, create a t_symbol* fromit and go spelunking in the symbol's s_thing for receivers. But this isn'tfoolproof, as someone can easily create a receiver with the same name asan abstraction.I encapsulated #1 in the pd-l2ork introspection objects [pdinfo] and [canvasinfo].-Jonathan