<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Detect walls with modified profiles in Revit Architecture Forum</title>
    <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9027198#M176142</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2591481"&gt;@Yien_Chao&lt;/a&gt;That is exactly what I am looking for. I basically want to catch every time users made a sketch, because I consider it bad practice (bad for wall joining, level relationship, etc). This is for my model audit workflows.&lt;/P&gt;</description>
    <pubDate>Mon, 16 Sep 2019 13:15:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-09-16T13:15:16Z</dc:date>
    <item>
      <title>Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/8998392#M176117</link>
      <description>&lt;P&gt;I'm tasked with auditing a model we've received and a lot of the walls have modified profiles. I was wondering if it is possible to somehow select all the walls that have a modified profile and none of the regular 'rectangular walls?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have Ideate Explorer at my disposal, but could not find this particular parameter.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Aug 2019 18:34:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/8998392#M176117</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-30T18:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/8998562#M176118</link>
      <description>&lt;P&gt;here a code for selecting only FaceSplitter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;import clr

# Import DocumentManager and TransactionManager
clr.AddReference("RevitServices")
import RevitServices
from RevitServices.Persistence import DocumentManager
from RevitServices.Transactions import TransactionManager

# Import RevitAPI
clr.AddReference("RevitAPI")
import Autodesk
from Autodesk.Revit.DB import *

doc = DocumentManager.Instance.CurrentDBDocument
collector= FilteredElementCollector(doc)
filter = ElementCategoryFilter(BuiltInCategory.OST_EditCutProfile)

elements = collector.WherePasses(filter).ToElements()

elId = [i.SplitElementId for i in elements]
walls = [doc.GetElement(i) for i in elId]

OUT = walls&lt;/PRE&gt;</description>
      <pubDate>Fri, 30 Aug 2019 20:01:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/8998562#M176118</guid>
      <dc:creator>Yien_Chao</dc:creator>
      <dc:date>2019-08-30T20:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/8998810#M176119</link>
      <description>&lt;P&gt;&lt;A href="https://forum.dynamobim.com/t/filter-only-walls-with-an-edited-profile/18149" target="_blank"&gt;https://forum.dynamobim.com/t/filter-only-walls-with-an-edited-profile/18149&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Aug 2019 00:08:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/8998810#M176119</guid>
      <dc:creator>barthbradley</dc:creator>
      <dc:date>2019-08-31T00:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003089#M176120</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2591481"&gt;@Yien_Chao&lt;/a&gt; Is this for Dynamo or another more direct plugin?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 12:30:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003089#M176120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T12:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003682#M176121</link>
      <description>&lt;P&gt;Python inside dynamo.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 16:08:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003682#M176121</guid>
      <dc:creator>Yien_Chao</dc:creator>
      <dc:date>2019-09-03T16:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003684#M176122</link>
      <description>&lt;P&gt;Thanks for the clarification!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 16:09:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003684#M176122</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T16:09:50Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003704#M176123</link>
      <description>&lt;P&gt;Au plaisir &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 16:19:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003704#M176123</guid>
      <dc:creator>Yien_Chao</dc:creator>
      <dc:date>2019-09-03T16:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003728#M176124</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2591481"&gt;@Yien_Chao&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible to show how these nodes are set up with an image? I`ve plugged the code in a node and don't get any result. I think I`m missing a step.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way, using Revit 2019.2.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Python.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/673616iE85E76A5186FFA17/image-size/large?v=v2&amp;amp;px=999" role="button" title="Python.jpg" alt="Python.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 16:28:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003728#M176124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T16:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003862#M176125</link>
      <description>&lt;P&gt;strange..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;its works for me... there is an execute button on the Python, but also on the Dynamo&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2019-09-03_13-35-31.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/673626i85D93F7C15C9A037/image-size/large?v=v2&amp;amp;px=999" role="button" title="2019-09-03_13-35-31.jpg" alt="2019-09-03_13-35-31.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 17:36:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9003862#M176125</guid>
      <dc:creator>Yien_Chao</dc:creator>
      <dc:date>2019-09-03T17:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004056#M176126</link>
      <description>&lt;P&gt;Strange indeed, it worked in another session of Revit in another project!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey! It works now! Thanks! &lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 18:51:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004056#M176126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T18:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004067#M176127</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Annotation 2019-09-03 115757.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/673645iB5C2CF54ED204BE8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Annotation 2019-09-03 115757.png" alt="Annotation 2019-09-03 115757.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 18:59:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004067#M176127</guid>
      <dc:creator>ToanDN</dc:creator>
      <dc:date>2019-09-03T18:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004072#M176128</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/244938"&gt;@ToanDN&lt;/a&gt;Thank you, but I was not able to get this to work for some reason. The Spring nodes would not come up after installing the package and restarting Revit.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've documented my request for help on the Dynamo page:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forum.dynamobim.com/t/filter-only-walls-with-an-edited-profile/18149" target="_blank"&gt;https://forum.dynamobim.com/t/filter-only-walls-with-an-edited-profile/18149&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 19:02:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004072#M176128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T19:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004079#M176129</link>
      <description>You just need to install Springs package yourself.  It does not come with Revit and Dynamo.&lt;BR /&gt;Go to Packages menu and Search for a Package.</description>
      <pubDate>Tue, 03 Sep 2019 19:04:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004079#M176129</guid>
      <dc:creator>ToanDN</dc:creator>
      <dc:date>2019-09-03T19:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004082#M176130</link>
      <description>&lt;P&gt;I did this and the nodes did not show up after a Revit restart. For now, I will be going with the other solution, thanks for the help!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 19:06:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004082#M176130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T19:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004096#M176131</link>
      <description>&lt;P&gt;Final solutions prints a file with all the IDs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LIST.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/673650iC96BF19673636853/image-size/large?v=v2&amp;amp;px=999" role="button" title="LIST.jpg" alt="LIST.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 19:10:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004096#M176131</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T19:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004152#M176132</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2591481"&gt;@Yien_Chao&lt;/a&gt;I found a weird behaviour.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your script still does not work in my original project, but it works in the new project. So the project where it was not working at first, it still does not work in. Weird. Both are BIM 360 Design projects.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/244938"&gt;@ToanDN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because solution 1 did not 100% work, I started looking again at your again, troubleshooting more. I installed both Spring packages I could find and rebooted the whole computer (just in case). I still cannot find the nodes I need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nodes.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/673666iF255822BFEB4B804/image-size/large?v=v2&amp;amp;px=999" role="button" title="Nodes.jpg" alt="Nodes.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 19:39:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004152#M176132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-03T19:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004178#M176133</link>
      <description>&lt;P&gt;ohh! my bad. i was thinking of cut profil, not face profil!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 19:54:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004178#M176133</guid>
      <dc:creator>Yien_Chao</dc:creator>
      <dc:date>2019-09-03T19:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004210#M176134</link>
      <description>You installed [SpringsUI].  You need to install [spring nodes].</description>
      <pubDate>Tue, 03 Sep 2019 20:18:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9004210#M176134</guid>
      <dc:creator>ToanDN</dc:creator>
      <dc:date>2019-09-03T20:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9005518#M176135</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/244938"&gt;@ToanDN&lt;/a&gt;I actually installed both if you look at the image.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2591481"&gt;@Yien_Chao&lt;/a&gt;I`m not sure I understand why it does not work in one project but not in another.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 12:30:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9005518#M176135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-04T12:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Detect walls with modified profiles</title>
      <link>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9006012#M176136</link>
      <description>I wonder if it has something to do with the French version of Revit.</description>
      <pubDate>Wed, 04 Sep 2019 15:34:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-architecture-forum/detect-walls-with-modified-profiles/m-p/9006012#M176136</guid>
      <dc:creator>ToanDN</dc:creator>
      <dc:date>2019-09-04T15:34:21Z</dc:date>
    </item>
  </channel>
</rss>

