<?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: Script filtering and Folded beams in Advance Steel Forum</title>
    <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9645475#M24732</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2217724"&gt;@Sebastian_Eiche&lt;/a&gt;&amp;nbsp; &amp;nbsp; yes, with the dimension request removed the dimension string no longer gets created.&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jul 2020 22:40:45 GMT</pubDate>
    <dc:creator>Masibanda-CE</dc:creator>
    <dc:date>2020-07-20T22:40:45Z</dc:date>
    <item>
      <title>Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9636036#M24721</link>
      <description>&lt;P&gt;I have script filters that look for all the different DSTV codes for use in Drawing processes and Dimension requests. They tend to work rather well with the exception of "Folded beams". Folded beams seem to return "True" for all DSTV code scripting. Does anyone experience this or understand why this would be?&lt;/P&gt;&lt;P&gt;The most recent example is a Dimension request that is filtering for points of a T section, but is picking up the points of a Folded beam.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 04:37:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9636036#M24721</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-15T04:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9636279#M24722</link>
      <description>&lt;P&gt;You could filter them out before asking for the DSTV Types.&lt;BR /&gt;Should be something like:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;If Obj.IsKindOf(kfoldedBeamClass) 'Checking for unfolded objects
   Then
   Else                      
End If&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 15 Jul 2020 08:16:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9636279#M24722</guid>
      <dc:creator>Sebastian_Eiche</dc:creator>
      <dc:date>2020-07-15T08:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9637850#M24723</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2217724"&gt;@Sebastian_Eiche&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So what you're saying is that I need to add that into my existing script for "Tees" in order to keep them out? How do you insert that into this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;'Check for T profile&lt;BR /&gt;Function checkElement(Obj)&lt;BR /&gt;checkElement = False&lt;BR /&gt;If Obj.IsKindOf(kBeamStraightClass) Then&lt;BR /&gt;ProfTypeX = Obj.getProfType.getDSTVValues.DSTVType&lt;BR /&gt;If ProfTypeX = 8 Then&lt;BR /&gt;checkElement = True&lt;BR /&gt;End If&lt;BR /&gt;End If&lt;BR /&gt;End Function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I add .... "&amp;amp;&amp;amp;Obj.IsNotKindOf(kfoldedBeamClass)" befor the THEN statement?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this works then GREAT! But why are folded beams sneaking through all DSTV type filters??????&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jul 2020 21:58:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9637850#M24723</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-15T21:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9638308#M24724</link>
      <description>&lt;P&gt;not sure if "notkindof..."works, my first idea would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Function checkElement(Obj)
checkElement= False
'check for unfolded
	If Obj.IsKindOf(kBeamUnfoldedClass)  
	Then        
	Else 
	'Check for T profile
		If Obj.IsKindOf(kBeamStraightClass) Then
				ProfTypeX = Obj.getProfType.getDSTVValues.DSTVType
				If ProfTypeX = 8 Then
				checkElement = True
				End If
		End If

    End If
End Function&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 16 Jul 2020 06:28:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9638308#M24724</guid>
      <dc:creator>Sebastian_Eiche</dc:creator>
      <dc:date>2020-07-16T06:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9640165#M24725</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2217724"&gt;@Sebastian_Eiche&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks but that didn't work, error message appeared to crash with "kBeamUnfoldedClass".&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 23:13:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9640165#M24725</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-16T23:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9640460#M24726</link>
      <description>&lt;P&gt;could you upload a small model and show what should be the result maybe we missunderstood each other&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 06:27:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9640460#M24726</guid>
      <dc:creator>Sebastian_Eiche</dc:creator>
      <dc:date>2020-07-17T06:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9643411#M24727</link>
      <description>&lt;P&gt;Hi Gary,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this script works for As2020 and As 2021&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Function checkElement(Obj)&lt;BR /&gt;checkElement= False&lt;BR /&gt;'check for unfolded&lt;BR /&gt;MsgBox("Start checking")&lt;BR /&gt;If not Obj.IsKindOf(kBeamUnfoldedClass) and Obj.IsKindOf(kBeamStraightClass) Then&lt;BR /&gt;MsgBox("Is straight beam- valid")&lt;BR /&gt;ProfTypeX = Obj.getProfType.getDSTVValues.DSTVType&lt;BR /&gt;MsgBox("ProfType is " + cstr(ProfTypeX))&lt;BR /&gt;If ProfTypeX = 0 Then&lt;BR /&gt;MsgBox(cstr(Obj.getProfType.getRunname))&lt;BR /&gt;checkElement = True&lt;BR /&gt;End If&lt;BR /&gt;elseif Obj.IsKindOf(kBeamUnfoldedClass) Then&lt;BR /&gt;MsgBox("Is folded beam- invalid")&lt;BR /&gt;End If&lt;BR /&gt;End Function&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH,&lt;/P&gt;
&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jul 2020 17:26:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9643411#M24727</guid>
      <dc:creator>ChristianBlei</dc:creator>
      <dc:date>2020-07-19T17:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9643613#M24728</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/572133"&gt;@ChristianBlei&lt;/a&gt;&amp;nbsp; &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2217724"&gt;@Sebastian_Eiche&lt;/a&gt;&amp;nbsp; Thanks guys, but there's something still amiss with applying the script within Drawing styles. See the video ....&lt;/P&gt;&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DqkJYPMkTY3E&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube&amp;amp;display_name=YouTube&amp;amp;src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FqkJYPMkTY3E" width="600" height="338" scrolling="no" title="- YouTube" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 19 Jul 2020 22:16:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9643613#M24728</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-19T22:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9643953#M24729</link>
      <description>&lt;P&gt;is this object really a plate?or is it a foldedbeam?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;a folded plate should set the checkelement to false, so we have a few option here:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;wrong dimension rule (maybe the dimension exist because of another line of the rule?)&lt;/LI&gt;
&lt;LI&gt;it is bug &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;What version (installed language) do you use?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit:&lt;BR /&gt;If I use the script for filtering in processes, Christians and the other from me are working. So the problem is maybe only by using it as filter for modelobject in dimensions&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 07:12:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9643953#M24729</guid>
      <dc:creator>Sebastian_Eiche</dc:creator>
      <dc:date>2020-07-20T07:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9645210#M24730</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2217724"&gt;@Sebastian_Eiche&lt;/a&gt;&lt;/P&gt;&lt;P&gt;The object was created using the “Folded beam” tool. As a DSTV type it should be 14 (no way to be sure without Autodesk feedback) but it certainly isn’t a T or 8.&lt;/P&gt;&lt;P&gt;The dimension request is looking for 2 selections; the extreme size as reference and the T center, there’s nothing else.&lt;/P&gt;&lt;P&gt;We’re running v2020 and multiple languages.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I agree, there is nothing wrong with the script when you just run it but it doesn’t work within the drawing styles.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 19:13:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9645210#M24730</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-20T19:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9645239#M24731</link>
      <description>&lt;P&gt;The question is: if you delete this line in the dimension rules, does the dimension really be deleted on the detail drawing?&lt;/P&gt;
&lt;P&gt;I only want to be sure, that we don't try to find the error but maybe this dimension is appearing because of another line of the dimension rule&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 19:27:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9645239#M24731</guid>
      <dc:creator>Sebastian_Eiche</dc:creator>
      <dc:date>2020-07-20T19:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9645475#M24732</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2217724"&gt;@Sebastian_Eiche&lt;/a&gt;&amp;nbsp; &amp;nbsp; yes, with the dimension request removed the dimension string no longer gets created.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jul 2020 22:40:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9645475#M24732</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-20T22:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646247#M24733</link>
      <description>&lt;P&gt;I did some tests:&lt;/P&gt;
&lt;P&gt;the scripts are not working for dimension and label strategy.&lt;BR /&gt;I will do some additional test and will come back with more informations&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 09:24:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646247#M24733</guid>
      <dc:creator>Sebastian_Eiche</dc:creator>
      <dc:date>2020-07-21T09:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646311#M24734</link>
      <description>&lt;P&gt;Hi Sebsatian,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;are the buggy or do you think they are not implemented?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best,&lt;/P&gt;
&lt;P&gt;Christian&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 10:00:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646311#M24734</guid>
      <dc:creator>ChristianBlei</dc:creator>
      <dc:date>2020-07-21T10:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646440#M24735</link>
      <description>&lt;P&gt;the filter itself are working, but the problem is another one in my opinion.&lt;/P&gt;
&lt;P&gt;IF i set the model object to "all objects" the filter is not working (this is known) so you always have to set a model object like "beams"&lt;/P&gt;
&lt;P&gt;Now the T is a beam and there's an extra modelobject for folded beams. Normally the model object "beams" should select out the folded beams, but the folded beams are recognized nevertheless. I had no idea why.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 11:22:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646440#M24735</guid>
      <dc:creator>Sebastian_Eiche</dc:creator>
      <dc:date>2020-07-21T11:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646498#M24736</link>
      <description>&lt;P&gt;Hi Sebastian,&lt;/P&gt;
&lt;P&gt;I do not agree.&lt;/P&gt;
&lt;P&gt;Unfolded is a (straight) beam and if you test unfolded for being a beam it has to pass the test.&lt;/P&gt;
&lt;P&gt;Unfolded is a kind of specialized beam, but it inherits from straightbeam which inherits from beam..&lt;/P&gt;
&lt;P&gt;In .Net I can check if the filerobject of a unfolded is a Beam, or a StraightBeam or an UnfoldedStraightBeam. All returns true.&lt;/P&gt;
&lt;P&gt;By the way: the profiletype of unfolded is 31. Maybe you can try this value in your tests.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;best, Christian&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 12:02:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9646498#M24736</guid>
      <dc:creator>ChristianBlei</dc:creator>
      <dc:date>2020-07-21T12:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9647899#M24737</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6234317"&gt;@Masibanda-CE&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Things are not so flexible in this area.&lt;BR /&gt;I think is better to focus on keep it as straightforward possible.&lt;BR /&gt;I hope I'm not missing anything, but I don't see why to check that isn't a folded beam, since the T shape condition is going to filter out anyway the folded beam.&lt;BR /&gt;I'd recommend also to begin with the model object "attached beam" (instead of "beam") and if everything goes well, try "relaxing" this condition further by using "beam" as model object.&lt;/P&gt;
&lt;P&gt;Everything is important and interact differently based on how they are combined: model object, properties invoked in filter, where they are used (e.g. Mp drawing...).&lt;BR /&gt;There are situation when even for the simplest filter demand (a section shape), it's not going to work for model object "Beam", but it's going to work for "Main part beam".&lt;BR /&gt;So my recommendation is to start your check with the best targeted model object for your situation, having into consideration also where you are going to use it (e.g. Mp drawing).&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 21:44:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9647899#M24737</guid>
      <dc:creator>gabriel.costin</dc:creator>
      <dc:date>2020-07-21T21:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9647942#M24738</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2884514"&gt;@gabriel.costin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You're correct there should be no reason to check if it is folded or unfolded for that matter. Logic would dictate that the simple DSTV filter for a "T" should work regardless. I will try using the "AttachedPart" Model object.&lt;/P&gt;&lt;P&gt;Your statement:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;There are situation when even for the simplest filter demand (a section shape), it's not going to work for model object "Beam", but it's going to work for "Main part beam".&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;both intrigues and infuriates me .... why does it matter if an object is "main" or "attached" when at its core DSTV identity it can not be filtered? Do you have a list of token hierarchies that scripts search through?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 22:20:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9647942#M24738</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-21T22:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9647955#M24739</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2884514"&gt;@gabriel.costin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the "AttachedPart" filter caused even more confusion. Now that dimension request is collecting center points from ALL attached objects - angles, plates, foldedbeams.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2020-07-22_10-29-42.png" style="width: 899px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/797814i75DF8137F31F5F27/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-07-22_10-29-42.png" alt="2020-07-22_10-29-42.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 22:30:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9647955#M24739</guid>
      <dc:creator>Masibanda-CE</dc:creator>
      <dc:date>2020-07-21T22:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Script filtering and Folded beams</title>
      <link>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9648025#M24740</link>
      <description>&lt;P&gt;Please try to use AttachedBeams, since you are about to invoke a property (section shape) that is available for beams only, while AtttachedPart means plates too.&lt;BR /&gt;As far as I know, you should use ProfTypeX = 8 for T shapes.&lt;BR /&gt;If you want to check if the AttachedBeam does its job properly in conjunction with a filter, you can check it with an existing predefined filter (e.g. profile angle).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately I can't provide you more insights about those inconsistencies that you are saying. I can only speculate that one of the reasons can be what Christian mentioned, regarding how the objects are organized at code level. We've recently started to leverage usage of these filters (couple of years ago) by providing some out of the box ones, that allowed to accomplish additional requirements for detailing. I perfectly understand although that there is room for much more in here.&lt;BR /&gt;I'm not a specialist within this domain, but I guess that API documentation can provide some clues on these code hierarchies.&lt;BR /&gt;I've mainly shared with you this behavior as from user perspective, in order to narrow down your attempts, being aware that it can be very time and energy consuming.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 23:32:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/advance-steel-forum/script-filtering-and-folded-beams/m-p/9648025#M24740</guid>
      <dc:creator>gabriel.costin</dc:creator>
      <dc:date>2020-07-21T23:32:48Z</dc:date>
    </item>
  </channel>
</rss>

