<?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: Removing Ability to use Adaptivity in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12559526#M26657</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can deselect the option below to avoid Inventor set the parts "adaptative", unless you really need it.&lt;BR /&gt;Save this setting in the template file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CCarreiras_0-1707908539372.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1325916i141ED6CFBB134559/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CCarreiras_0-1707908539372.png" alt="CCarreiras_0-1707908539372.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 14 Feb 2024 11:02:59 GMT</pubDate>
    <dc:creator>CCarreiras</dc:creator>
    <dc:date>2024-02-14T11:02:59Z</dc:date>
    <item>
      <title>Removing Ability to use Adaptivity</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12558978#M26655</link>
      <description>&lt;P&gt;Hey all,&lt;BR /&gt;&lt;BR /&gt;I'm just wondering if there is a setting that removes the ability to make parts adaptive globally within Inventor. We work in such a way with a library of parts that get borrowed between projects, that adaptive parts can cause issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help,&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 04:23:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12558978#M26655</guid>
      <dc:creator>ross_goldbergQU7DJ</dc:creator>
      <dc:date>2024-02-14T04:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Ability to use Adaptivity</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12559004#M26656</link>
      <description>&lt;P&gt;No setting out of the box for this, but it is probably a good entry for the idea station:&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-ideas/idb-p/v1232" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-ideas/idb-p/v1232&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You'd probably have to use iLogic nowadays to parse through assemblies (before releasing them) to remove all adaptability:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Dim doc As Document = ThisApplication.ActiveDocument
If doc.DocumentType &amp;lt;&amp;gt; kAssemblyDocumentObject Then
MessageBox.Show("This rule can only be run in an assembly file!",
"Try again")
Return
End If

Dim iCounter As Integer = 0

' Loop through all referenced docs in assembly
For Each oDoc As Document In doc.AllReferencedDocuments
Try
If oDoc.ModelingSettings.AdaptivelyUsedInAssembly = True Then
oDoc.ModelingSettings.AdaptivelyUsedInAssembly = False
iCounter += 1
End If
Catch
End Try
Next

MessageBox.Show("Adaptivity was switched off for " &amp;amp; iCounter &amp;amp; "
file(s)!", "You're welcome")

' End of iLogic code&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-programming-ilogic/turn-off-adaptively-used/m-p/6691069" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-programming-ilogic/turn-off-adaptively-used/m-p/6691069&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-programming-ilogic/turn-off-adaptivity-using-ilogic-leave-reference/m-p/11444855" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-programming-ilogic/turn-off-adaptivity-using-ilogic-leave-reference/m-p/11444855&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-adaptivity-toggle/m-p/9922371" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-adaptivity-toggle/m-p/9922371&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-detect-if-adaptive-assembly-is-hose-amp-pipe-or-harness/m-p/7864750/highlight/true#M82132" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-detect-if-adaptive-assembly-is-hose-amp-pipe-or-harness/m-p/7864750/highlight/true#M82132&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 04:52:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12559004#M26656</guid>
      <dc:creator>Gabriel_Watson</dc:creator>
      <dc:date>2024-02-14T04:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Ability to use Adaptivity</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12559526#M26657</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can deselect the option below to avoid Inventor set the parts "adaptative", unless you really need it.&lt;BR /&gt;Save this setting in the template file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CCarreiras_0-1707908539372.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1325916i141ED6CFBB134559/image-size/medium?v=v2&amp;amp;px=400" role="button" title="CCarreiras_0-1707908539372.png" alt="CCarreiras_0-1707908539372.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 11:02:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12559526#M26657</guid>
      <dc:creator>CCarreiras</dc:creator>
      <dc:date>2024-02-14T11:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Ability to use Adaptivity</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12559723#M26658</link>
      <description>&lt;P&gt;Are you utilizing Vault?&lt;/P&gt;&lt;P&gt;If so, the commonly shared parts could be authored as Library parts. Then only the Library Editors would have the ability to make them adaptive. No one else would have the ability to modify or alter the library parts (much like content center items).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You could possibly do it without Vault but it would require modifying the READ/WRITE permissions to the shared network folder for the parts.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 12:20:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12559723#M26658</guid>
      <dc:creator>mpatchus</dc:creator>
      <dc:date>2024-02-14T12:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: Removing Ability to use Adaptivity</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12560799#M26659</link>
      <description>&lt;P&gt;Hi! There isn't a way to block Adaptive from being used totally. But there are options to reduce the usage. Go to Tools -&amp;gt; App Options -&amp;gt; Assembly -&amp;gt; In-place features -&amp;gt; uncheck all boxes.&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 21:04:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/removing-ability-to-use-adaptivity/m-p/12560799#M26659</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2024-02-14T21:04:13Z</dc:date>
    </item>
  </channel>
</rss>

