I’m encountering an issue while trying to create new elevation views based on the outlines of a scope box. The script works perfectly in Dynamo 1.3.4.6 (Revit 2019) but fails to produce the expected results in Dynamo 3.3 (Revit 2025)
Overview of the Workflow:
user selects a scope box in Revit
outlines of the scope box are extracted
midpoints position of the outlines are used for placing elevation markers
Python script generates four elevation views for each selected scope box based on this logic
Issue in Dynamo 3.3:
In Dynamo 1.3, the [PolyCurve.Curves] node outputs a list of Curves, and the Python script correctly creates all four elevation views.
In Dynamo 3.3, the same logic results in the [PolyCurve.Curves] node outputting a list of Lines instead of Curves
As a result, the Python script only creates 1 elevation view instead of 4, and I suspect the issue lies in how the Python script handles the Lines.
I do not have any experience working with Python, so I don’t really know how to resolve this further… Any help would be greatly appreciated!
Here’s a screenshot comparing the output behavior in Dynamo 1.3 and Dynamo 3.3 for the same input:
This most likely prevented the python script to run correctly, I presume it only wants Curves.(even though Lines essentially are curves as well)
Is it possible to modify the Python script to properly handle Lines? Or is it possible to convert Lines to Curves before feeding into Python?
I’m a new user so I can’t upload my dyn files directly here. So I have uploaded them here instead. DYN