How to find the location of a cluster in the menu?

How to find the location of a cluster in the menu?
Or how to create a cluster where we can find the location with Ctrl + Alt keys
What if grasshopper- sdk doesn’t have this feature? Is there a script or plugin to help with this?
if yes i need this script!



I use the otools script to do this, but it’s a bit tedious. If there’s another plugin in this area, it’s more convenient, or if it’s possible to add a {finding cluster with ctrl + shift keys}option in the new version of rhino 7, Grasshopper
@wim
OTools_GetComponents2.ghuser (6.6 KB)

Metahopper:


Can be used to find all clusters or other objects of the same type.

Yes, with metahopper, maybe
But can you send an example as a gh file or video with metahopper?

private void RunScript(ref object A)
{
  A = from o in GrasshopperDocument.Objects where o.Attributes.Selected
      select o.NickName + " (" + o.Name + ") | " + o.Category + " > " + o.SubCategory;
}

Category.gh (2.7 KB)
Main idea from: http://james-ramsden.com/access-component-properties-grasshopper/

3 Likes

thank you
very useful script