Hi dynamoers,
I am trying to place detail items in a legend view (I have done that a long time ago but cannot find the script…), I get to the point I can get the list of familyTypes, the same amount of point and the view to feed the Clockwork node FamilyInstance.ByPointInView.
So far so good.
It returns me X times the first detail item of the list.
I tried to iterate through list.map or list.combine with no luck.
any help would be greatly appreciated.
aside from that I had to edit the python in the Clocckwork node to get it working.
I changed this:
if ft.IsActive == False:
ft.Activate()
doc.Regenerate()
for that:
for ft in famtype:
if ft.IsActive == False:
ft.Activate()
doc.Regenerate()
@Andreas_Dieckmann (I know I should create an issue on github…)
oh, and I expect an answer before I come back from my lunch break… Kidding !