hey folks this may have been covered before, but just curious if there's a list of all the objects (not externals) in alphabetical order? i know about the list of object section in the Browser but that's not as helpful as it tries to save space a lot. there's an oldish website ( http://blog.joehahn.ws/list-puredata-objects-and-extended-objects) which comes close but ideally i'd just like a text list. i was reading somewhere that deken has such a thing? does that automatically come with version 47.1 on the Mac or does it need to be installed? informations on that or any list version of pd objects appreciated!
best, scott
On 2017-03-22 00:23, Scott R. Looney wrote:
ey folks this may have been covered before, but just curious if there's a list of all the objects (not externals) in alphabetical order? i know about the list of object section in the Browser but that's not as helpful
egrep "^#X obj" help-intro.pd
| sed -e 's|^#X obj [0-9]* [0-9]* ||' -e 's|;$||'
| sort
as it tries to save space a lot.
?
i was reading somewhere that deken has such a thing?
no. not really. deken can do a search for a library that contains an object, but it requires someone to provide that list and map it to a downloadable external (which doesn't really apply to Pd-vanilla). deken doesn't expose the object list anywhere.
does that automatically come with version 47.1 on the Mac or does it need to be installed?
it is built into Pd>=0.47
fgamsdr IOhannes