Hello everyone,
I’m having some strange issue with this basic task in Dynamo: getting a type parameter value from some elements in a linked revit file. I’ve never had this kind of problems and I really don’t know how to solve it. May it be caused by the linked model? I’ve already tried some changes like “overlay” and “attachmend” mode.
Thank you in advance!
!
As when you obtain type parameter values from the current document, you need to get the type of the instance.
Use the node Element.ElementType
after your List.Flatten
, and it should work.
1 Like
Thanks Martin but unfortunately I already get element types with the collector node so the Element.ElementType returns an error.
Edit: Sorry, I must be rusty :-).
Try the Element.ElementType+ from Clockwork:

The OOTB nodes can’t return Elements that reside in linked documents, and thus the node fails.
1 Like