<?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 Rule to change Body Appearance of Solid Body in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/5942670#M348630</link>
    <description>&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;I have the entire TCDEF Inventor training series.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;I am through about 1/3 of the Solid Modelling lessons and have not yet started the iLogic sessions.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Excellent training materials.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;Does anyone know if it is possible to change the Body Appearance of a body using an iLogic rule?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
    <pubDate>Tue, 08 Dec 2015 23:55:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-12-08T23:55:48Z</dc:date>
    <item>
      <title>iLogic Rule to change Body Appearance of Solid Body</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/5938470#M348628</link>
      <description>&lt;P&gt;Hi All,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;I have modelled an upper cabinet with multiple solid bodies &lt;/SPAN&gt;&lt;SPAN&gt;within the solid modelling environment of Inventor 2016. &amp;nbsp;See image below.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;I am using an Excel spreadsheet to drive the model and it&amp;nbsp;is working very well.&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/204938iE5A48BC0DDBD7D02/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Capture.JPG" title="Capture.JPG" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Currently, I can turn "on and off" the visibility of the cabinet doors and switch from one a one door cabinet to a two door cabinet using the iLogic rule as shown below. I have abbreviated the rule for simplicity of posting on the forum.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;No_Of_Doors&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;0&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Left Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Right Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Single Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
    
    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;No_Of_Doors&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;1&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Left Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Right Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Single Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;True&lt;/SPAN&gt;
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
    
    &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;No_Of_Doors&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;2&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;   
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Left Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;True&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Right Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;True&lt;/SPAN&gt;
    &lt;SPAN&gt;Feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;IsActive&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Single Raised Panel Door Extrusion&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;False&lt;/SPAN&gt;
    &lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;    &lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I am currently able to right click on the name of the solid body (ie. Left Raised Panel Door for example) in the browser window, select "Body Appearance" and then select "As Part" &amp;nbsp;to turn the colour of the door to gray, or select "Clear-Blue" to turn the colour fo the door to transoparent blue colour (as shown above).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://forums.autodesk.com/t5/image/serverpage/image-id/204940iAC0F8BB653CF6E51/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="Capture1.JPG" title="Capture1.JPG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I would like to be able to toggle the Body Appearance of the cabinet doors from "As Part" to "Clear-Blue"&amp;nbsp;by&amp;nbsp;using an iLogic rule which is driven by an Excel parameter.&lt;/LI&gt;&lt;LI&gt;Is this is possible?&lt;/LI&gt;&lt;LI&gt;If so, would anyone be able to help me with the syntax of the&amp;nbsp;iLogic rule?&lt;/LI&gt;&lt;LI&gt;Please go easy on me. &amp;nbsp;I am very new&amp;nbsp;Inventor and my only experience so far with iLogic is to program a few rules to turn visibility of features&amp;nbsp;on and off.&lt;/LI&gt;&lt;LI&gt;Thank you in advance for your help!&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Don&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2015 00:31:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/5938470#M348628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-07T00:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Rule to change Body Appearance of Solid Body</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/5939632#M348629</link>
      <description>&lt;P&gt;Unfortuneatly I don't know the answer to your question but if your interested you might benifit from some training. Here's a couple links&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.trainingtutorial.com/iLogic_Made_Simple2016.htm" target="_self"&gt;TEDCF iLogic course&lt;/A&gt;&lt;/P&gt;&lt;P&gt;(there is a sample lesson but it early on so it might seem basic)&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.amazon.com/dp/B0161RLJDM" target="_blank"&gt;Amazon sale on course&lt;/A&gt;&lt;/P&gt;&lt;P&gt;(the photos on amazon might be more helpful)&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2015 16:55:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/5939632#M348629</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-07T16:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Rule to change Body Appearance of Solid Body</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/5942670#M348630</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;I have the entire TCDEF Inventor training series.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;I am through about 1/3 of the Solid Modelling lessons and have not yet started the iLogic sessions.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Excellent training materials.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;Does anyone know if it is possible to change the Body Appearance of a body using an iLogic rule?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2015 23:55:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/5942670#M348630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-08T23:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Rule to change Body Appearance of Solid Body</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/6210143#M348631</link>
      <description>Don,&lt;BR /&gt;&lt;BR /&gt;Did you find a solution to this at all? I push Inventor to it's limits by building entire buildings in it! I model curtain wall facades and as part of keeping the full assembly light, i simplify each panel. Downside of this, the parts lose their appearance and i have to go into each one and change the appearance of the Solid Body. Very tedious!</description>
      <pubDate>Thu, 10 Mar 2016 23:53:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/6210143#M348631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-10T23:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic Rule to change Body Appearance of Solid Body</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/7452641#M348632</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;@Anonymous&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are some examples here in case it's still of interest:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-forum/change-color-of-solidbody/m-p/7452625#M663148" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-forum/change-color-of-solidbody/m-p/7452625#M663148&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also just as a tip, you can search and ask programming questions of this type on the Inventor Customization forum too:&lt;BR /&gt;&lt;A href="http://forums.autodesk.com/t5/Autodesk-Inventor-Customization/bd-p/120" target="_blank"&gt;http://forums.autodesk.com/t5/Autodesk-Inventor-Customization/bd-p/120&lt;/A&gt;&lt;/P&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"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2017 20:13:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-rule-to-change-body-appearance-of-solid-body/m-p/7452641#M348632</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2017-10-11T20:13:41Z</dc:date>
    </item>
  </channel>
</rss>

