Hello there!
I am having a problem with the Replace.ItemAtIdex node. I want to replace 2 items with given index, but the result is not what I have expected. Can anybody help me out ?
@zhelun.zhu You can use nodes from archilab or BIM4Struc package.
Or you can use Python
for ind,rep in zip(IN[1],IN[2]):
IN[0][ind] = rep
OUT = IN[0]
@zhelun.zhu The node which doesn’t work is an OOTB Dynamo node and the one which works is from the archilab package as shown in my answer. Glad you got your problem solved.
LOL !
Thank you again!




