<?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: iLogic to convert from Tube &amp;amp; Pipe to a normal part? in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324403#M159342</link>
    <description>&lt;P&gt;I think the issue is whatever property 56 was previously, does not exist anymore for this. The property can't be found when I run through all the available properties.&lt;/P&gt;</description>
    <pubDate>Mon, 23 Oct 2023 13:43:15 GMT</pubDate>
    <dc:creator>ThomasRambach</dc:creator>
    <dc:date>2023-10-23T13:43:15Z</dc:date>
    <item>
      <title>iLogic to convert from Tube &amp; Pipe to a normal part?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324241#M159339</link>
      <description>&lt;P&gt;Is there an updated method (preferably in iLogic) for this?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/Remove-Tube-and-Pipe-Authoring-from-part.html?_ga=2.239284675.1191337333.1697721694-485535905.1695868626" target="_blank"&gt;https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/Remove-Tube-and-Pipe-Authoring-from-part.html?_ga=2.239284675.1191337333.1697721694-485535905.1695868626&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The macro does not seem to do anything in Inventor 2023.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 12:25:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324241#M159339</guid>
      <dc:creator>ThomasRambach</dc:creator>
      <dc:date>2023-10-23T12:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to convert from Tube &amp; Pipe to a normal part?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324298#M159340</link>
      <description>&lt;P&gt;Just checking, but have you already tried the same technique from an iLogic rule?&amp;nbsp; Sometimes the 'ThisDoc.Document' reference will point to a different Document than the 'ThisApplication.ActiveDocument' reference will, and sometimes that makes all the difference.&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Dim oProp As Inventor.Property = ThisDoc.Document.PropertySets.Item("32853F0F-3444-11d1-9E93-0060B03C1CA6").ItemByPropId(56)
oProp.Value = ""&lt;/LI-CODE&gt;
&lt;P&gt;Afterwards, another thing that you can check for, and maybe even remove, is the DocumentInterest (within Document.DocumentInterests) for the tube &amp;amp; pipe add-in.&amp;nbsp; You would just need the ClientID property value from the "Routed Systems: Tube &amp;amp; Pipe" add-in first, to use when checking for it.&amp;nbsp; That indicates whether that add-in had any part in the creation of the model, and may specify that something about the model is unique to that add-in.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 12:58:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324298#M159340</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2023-10-23T12:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to convert from Tube &amp; Pipe to a normal part?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324403#M159342</link>
      <description>&lt;P&gt;I think the issue is whatever property 56 was previously, does not exist anymore for this. The property can't be found when I run through all the available properties.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 13:43:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324403#M159342</guid>
      <dc:creator>ThomasRambach</dc:creator>
      <dc:date>2023-10-23T13:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to convert from Tube &amp; Pipe to a normal part?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324465#M159344</link>
      <description>&lt;P&gt;That property should still exist, but it might possibly be ReadOnly for some reason.&amp;nbsp; The regular name of the PropertySet is "Design Tracking Properties" (or "Project", if using iLogic snippet), and the Property name is "Categories".&amp;nbsp; It is at Index 36, and its PropID is 56.&amp;nbsp; The &lt;A href="https://help.autodesk.com/view/INVNTOR/2024/ENU/?guid=PropertiesForDesignTrackingPropertiesEnum" target="_blank" rel="noopener"&gt;online documentation&lt;/A&gt; for that property says that it is ReadOnly, had no user interface way of accessing it, and will usually contain a String type value containing XML related data.&amp;nbsp; I have not used it for anything myself, but have seen several other similar posts about folks using it to get rid of a document's association with Content Center, Frame Generator, Tube &amp;amp; Pipe related add-ins before, so it must not always be ReadOnly.&amp;nbsp; They very likely need to update their online help documentation.&amp;nbsp; Attached is a PDF of an Excel spreadsheet I created for mapping out and documenting all the standard, and not so standard, but common iProperties.&amp;nbsp; I'm not saying that this is the only way to accomplish what you are trying to do...just saying that the iProperty should still be there, because it is a standard one that is present in all documents, within the third PropertySet.&amp;nbsp; Not all standard properties will be useful in all types of documents though, because some of them are document type specific, and may either be empty, or contain a value that is not useful for much.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 14:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324465#M159344</guid>
      <dc:creator>WCrihfield</dc:creator>
      <dc:date>2023-10-23T14:05:30Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to convert from Tube &amp; Pipe to a normal part?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324491#M159345</link>
      <description>&lt;P&gt;HI &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/48931"&gt;@ThomasRambach&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did a quick test and was able to get this to work with Inventor 2023. See steps below, just in case this is a workflow issue ( I had to refresh my memory on how this all worked) .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Just to confirm the workflow:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;I created a run with a &lt;SPAN class="ph uicontrol"&gt;&lt;SPAN&gt;fitting&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;in a T&amp;amp;P assembly.&lt;/LI&gt;
&lt;LI&gt;I used the Save and Replace to create a copy in a read/write location
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN class="ph uicontrol"&gt;Assemble tab&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="ph uicontrol"&gt;Productivity panel&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="ph uicontrol"&gt;Save and Replace&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN class="ph uicontrol"&gt;&lt;SPAN&gt;This resulted in 2 fittings&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN class="ph uicontrol"&gt;&lt;SPAN&gt;I opened this new copy fitting part file by itself&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN class="ph uicontrol"&gt;&lt;SPAN&gt;Ran the Macro&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN class="ph uicontrol"&gt;&lt;SPAN&gt;Returned to the assembly and right clicked on it in the browser and confirmed the T&amp;amp;P options were no longer there&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN class="ph uicontrol"&gt;&lt;SPAN&gt;Right clicked on the original fitting in the browser and confirmed the T&amp;amp;P options were still there&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;BR /&gt;Best of luck to you in all of your Inventor pursuits,&lt;BR /&gt;Curtis&lt;BR /&gt;&lt;A href="http://inventortrenches.blogspot.com" target="_blank" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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="Curtis_Waguespack_2-1698074893909.png" style="width: 300px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1282615iC5056CB390CBA644/image-size/small?v=v2&amp;amp;px=200" role="button" title="Curtis_Waguespack_2-1698074893909.png" alt="Curtis_Waguespack_2-1698074893909.png" /&gt;&lt;/span&gt;&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="Curtis_Waguespack_1-1698074849419.png" style="width: 300px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1282613i9F889186F3330246/image-size/small?v=v2&amp;amp;px=200" role="button" title="Curtis_Waguespack_1-1698074849419.png" alt="Curtis_Waguespack_1-1698074849419.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 15:28:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324491#M159345</guid>
      <dc:creator>Curtis_Waguespack</dc:creator>
      <dc:date>2023-10-23T15:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic to convert from Tube &amp; Pipe to a normal part?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324984#M159363</link>
      <description>&lt;P&gt;I think it's working but not fully clearing what I need to clear. This still results in True:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DocumentInterests DocInst = mDoc.DocumentInterests;&lt;/P&gt;&lt;P&gt;bool bIsPipingRun = DocInst.HasInterest("{4D39D5F1-0985-4783-AA5A-FC16C288418C}");&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 17:11:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-to-convert-from-tube-amp-pipe-to-a-normal-part/m-p/12324984#M159363</guid>
      <dc:creator>ThomasRambach</dc:creator>
      <dc:date>2023-10-23T17:11:49Z</dc:date>
    </item>
  </channel>
</rss>

