Grasshopper Rhino object name problem ::

The box is named ‘box::100-100-100’ but the Grasshopper Rhino Model Object component only reads whats after my double colon ‘::’

I dont know that component, but Elefront Get Rhino Attributes, and Python seems to work:

import rhinoscriptsyntax as rs
import scriptcontext as sc
import Rhino

sc.doc = Rhino.RhinoDoc.ActiveDoc

a = sc.doc.Objects.Find(x).Attributes.Name

sc.doc = ghdoc

Thanks Adam.

I’m wondering why the new Rhino 8 component does it this way?

It seems to treat the object name the same way like a layer and only outputs the last child.

That was my thought too.