<?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: Show Feature Only When Material = PolyPropylene (I LOGIC) in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243901#M333178</link>
    <description>&lt;P&gt;Iparts might be worth considering still.&amp;nbsp; It's concievable that you could end up with a lot of duplicate parts if the same template part gets copied over and over.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Granted, I may not completely understand the endgame of your process, but it might be food for thought.&lt;BR /&gt;&lt;BR /&gt;I was already working on a code snippet when mcgyvr beat me to the punch.&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But here's my sample&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Material&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Polypropylene&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&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;Suppress&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;ElseIf&lt;/SPAN&gt; &lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Material&lt;/SPAN&gt; &lt;SPAN&gt;IsNot&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Suppress&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&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;Suppress&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;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You might also want to set an event trigger to update the part when the material changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 31 Mar 2016 13:38:25 GMT</pubDate>
    <dc:creator>JonathanMLanderos</dc:creator>
    <dc:date>2016-03-31T13:38:25Z</dc:date>
    <item>
      <title>Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243776#M333175</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New user to Inventor - Previous user of Solidedge &amp;amp; Solidworks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone could help me out with this I Logic code then that would be much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have got a certian feature i would like to show only when the material of the product is Polypropylene. Any other matieral the extrude feature needs to be suppressed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I understand there needs to be an Elseif to follow, but not sure what exactly. Please could anyone add to my code so that this works?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;iProperties.Material = ("Polypropylene") Then
Feature.IsActive("Extrusion3") = True&lt;BR /&gt;&lt;BR /&gt;End If&lt;/PRE&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Callum&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Weston-Super-Mare, UK&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 12:51:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243776#M333175</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-31T12:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243797#M333176</link>
      <description>&lt;P&gt;And reason you don't simply create this as an ipart? (called part configurations in Solidworks I believe)&lt;/P&gt;
&lt;P&gt;Not sure what you are trying to accomplish but typically an ipart is used to create a series of "similar" parts (called members) all driven by one model file (called the ipart factory)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but here..&lt;/P&gt;
&lt;PRE&gt;If iProperties.Material = ("Polypropylene") Then
Feature.IsActive("Extrusion3") = False
Else
Feature.IsActive("Extrusion3") = True
End If&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 13:02:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243797#M333176</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2016-03-31T13:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243836#M333177</link>
      <description>Hi mcgyvr,&lt;BR /&gt;&lt;BR /&gt;thanks for your reply but i would like to keep this as one part rather than creating a number of members. Reason being this part will be used in a master assembly, of which i would like to make copies of over and over again and sometime i need to apply differently materials to this part once copied depending on the parent assembly specification. When the material chosen is polyprop then this feature were talking about needs to be active. Any other material the feature needs to be suppressed.&lt;BR /&gt;&lt;BR /&gt;I was hoping this could be done in I Logic.&lt;BR /&gt;&lt;BR /&gt;Your coding does not work.&lt;BR /&gt;&lt;BR /&gt;THanks</description>
      <pubDate>Thu, 31 Mar 2016 13:11:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243836#M333177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-31T13:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243901#M333178</link>
      <description>&lt;P&gt;Iparts might be worth considering still.&amp;nbsp; It's concievable that you could end up with a lot of duplicate parts if the same template part gets copied over and over.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Granted, I may not completely understand the endgame of your process, but it might be food for thought.&lt;BR /&gt;&lt;BR /&gt;I was already working on a code snippet when mcgyvr beat me to the punch.&amp;nbsp; &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;But here's my sample&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Material&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Polypropylene&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&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;Suppress&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;ElseIf&lt;/SPAN&gt; &lt;SPAN&gt;iProperties&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Material&lt;/SPAN&gt; &lt;SPAN&gt;IsNot&lt;/SPAN&gt; &lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Suppress&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&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;Suppress&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;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You might also want to set an event trigger to update the part when the material changes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 13:38:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243901#M333178</guid>
      <dc:creator>JonathanMLanderos</dc:creator>
      <dc:date>2016-03-31T13:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243914#M333179</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;Hi mcgyvr,&lt;BR /&gt;&lt;BR /&gt;Your coding does not work.&lt;BR /&gt;&lt;BR /&gt;THanks&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The code&amp;nbsp;I posted works just fine..&lt;/P&gt;
&lt;P&gt;I "assumed" you knew you needed to run this rule anytime the material is changed or set an event trigger&amp;nbsp;on material change to run it automatically.. Guess you didn't&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>Thu, 31 Mar 2016 13:43:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243914#M333179</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2016-03-31T13:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243982#M333180</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mcgyvr i apologise your code is absolutley fine, i did not realise you had to apply an event trigger until jonathan pointed this out. After all i did state in my initial post that i am new to inventor! But thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jonathan -&amp;nbsp; Thanks for your post in helping me understand this process further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks all&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 14:03:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243982#M333180</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-31T14:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243995#M333181</link>
      <description>&lt;P&gt;Being that you are new you might want to look into iparts and iassemblies..&lt;/P&gt;
&lt;P&gt;As stated already we don't know what you are really trying to accomplish but I would recommend "new users" stay away from more advanced stuff like ilogic until they determine that the built in functions of Inventor won't do it for them..&lt;/P&gt;
&lt;P&gt;Just a suggestion..&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it sounds to me like you are making "similar" parts to be used in "similar" assemblies and ipart and iassemblies may be a perfectly acceptable solution for you and may save you some trouble down the road..&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 14:08:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6243995#M333181</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2016-03-31T14:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244038#M333182</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been using iparts/iassemblies on alot of my components and they have worked very well. But the situation with this part is that i would like to include it in an assembly that is fully parametric and can be changed to any size height/width/depth. On some of the parts like this one where the dims are fully driven by the parent assembly i would like to put in a set of rules (for example one of the rules tells the component to place a hole in the middle when the width dim exceeds 1500mm). And this feature that im trying to unsuppress when the material is polyprop is just another rule as i would like the opportunity to change the material of the component when placed in the assembly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a post i was just writing which may explain where im trying to get to a little bit better.&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;I have recently started a new job with a company that has all of their drawings/assemblies in AutoCad 2d. They would now like everything in 3d.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;They manufacture fume cupboards for schools, which a product range of about 5 or 6, all coming in about 4 different standard size variations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create parametric assemblies of these cupboards which are all driven by an invisible central block, so that all i have to do is change the size of the block and the assembly will re-size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My aim is to create a fully parametric adjustable size master assembly of each product range - so that when a customer requires a cupboard in a specific size that is non standard i can copy the assembly to make a unique version and change the sizes using the invisible central block i mentioned. Obviously some of the dimensions of the individual parts that make up the assembly would have now changed to reflect the parametrics on the parent assembly and on some of the projects the materials of certian parts will need to change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a drawing with every part or sub assembly so that if there is a change in dimensions of material then i can simply open the related drawing and update it. This will then be published in PDF format to show a drawing of the affected part so this can be sent for manufacture as a bespoke part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this sort of makes sense!? &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://forums.autodesk.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 14:23:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244038#M333182</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-03-31T14:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244120#M333183</link>
      <description>&lt;P&gt;HI callum3DX6P,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Welcome to the fourm. I just skimmed this converstation, but thought I'd point you to some resources that might be of interest.&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;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="wd-uppercase wd-font-14"&gt;&lt;A href="http://au.autodesk.com/content/au/global/en/au-online/classes-on-demand/class-catalog/classes/year-2013/product-design-suite/ma1936.html" target="_blank"&gt;Advanced iLogic: Code Encapsulation&lt;/A&gt;&amp;nbsp;by Chad Salmela&lt;/P&gt;
&lt;P&gt;&lt;A href="http://au.autodesk.com/au-online/classes-on-demand/class-catalog/2013/product-design-suite/ma1936#chapter=0" target="_blank"&gt;http://au.autodesk.com/au-online/classes-on-demand/class-catalog/2013/product-design-suite/ma1936#chapter=0&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://adskeventsvideo.autodesk.com/download/lueDA4aTojbuzr5xOFiV4gZlvXunI9Kq/DOcJ-FxaFrRg4gtDMwOjE2ZDowODE7Sj/MA1936-AdvancediLogicCodeEncapsulation.mp4" target="_blank"&gt;Video (download)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://aucache.autodesk.com/au2013/sessionsFiles/1936/1193/handout_1936_MA1936.pdf" target="_blank"&gt;PDF (download)&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;STRONG&gt;iParts vs iLogic &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Why use iParts when you could use iLogic or even Derived Parts?&lt;/P&gt;
&lt;P&gt;First, let’s make clear why you would choose to use iParts over iLogic. iParts are used when there are &lt;BR /&gt;limited numbers of members. With our tooth example we might have up to a dozen variations i.e.: &lt;BR /&gt;Material, Diameter, or Length. So it is fitting to use iParts. &lt;BR /&gt;iLogic is used when the number of members is unknown and you will be using rules to control other parts &lt;BR /&gt;whether they are iParts or not. Consider a part that has hundreds of possible variations. Go with iLogic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Source:&lt;/STRONG&gt; &lt;A href="http://aucache.autodesk.com/au2012/sessionsFiles/2525/3336/handout_2525_MA-2525%20class_handout.pdf" target="_blank"&gt;http://aucache.autodesk.com/au2012/sessionsFiles/2525/3336/handout_2525_MA-2525%20class_handout.pdf&lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;A title="Autodesk University" href="http://au.autodesk.com/au-online/classes-on-demand/class-catalog/2012/autodesk-inventor-products/autodesk-inventor-workflow-for-developing-a-top-down-manufacturing-shop-process#chapter=0" target="_blank"&gt;Autodesk® Inventor® work flow for developing a top down manufacturing shop process &lt;/A&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;By Jeff Richlin &amp;amp; Jim Dumont&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 31 Mar 2016 14:52:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244120#M333183</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2016-03-31T14:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244157#M333184</link>
      <description>If there's an infinite number of members, just use custom iParts. That's the way we do it.</description>
      <pubDate>Thu, 31 Mar 2016 15:03:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244157#M333184</guid>
      <dc:creator>gilsdorf_e</dc:creator>
      <dc:date>2016-03-31T15:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244206#M333185</link>
      <description>&lt;P&gt;@Anonymous﻿&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on your detail explanation..&amp;nbsp;&amp;nbsp; You may want to consider looking at &lt;A href="http://synergiscadblog.com/2015/11/23/inventor-icopy/" target="_blank"&gt;Inventor iCopy&lt;/A&gt;. &amp;nbsp;&amp;nbsp; Not sure if its a perfect match for your requirements but some of the information you have provided would work for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With iCopy, you basically setup your parts, assembly, and drawing templates and define what you want to change.&amp;nbsp; Then create a design using your information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However it does take time in getting it setup and working properly.&amp;nbsp; But just another option I wanted to add to this discussion.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Mar 2016 15:18:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6244206#M333185</guid>
      <dc:creator>Mark.Lancaster</dc:creator>
      <dc:date>2016-03-31T15:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245644#M333186</link>
      <description>&lt;P&gt;Morning,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for everyones contributions i will have a look into them.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone recommend a suitable method of copying assemblies, that enables me to select a parent assembly to copy, and it takes all of the attached part/sub-assy/and related drawing files with it? I would also like the option to add a pre-fix or suffix to the part numbers?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Callum&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2016 07:39:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245644#M333186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-01T07:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245683#M333187</link>
      <description>Just found a nifty bit of software called Design Cloner:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.mgfx.co.za/software/tools-for-inventor/" target="_blank"&gt;http://www.mgfx.co.za/software/tools-for-inventor/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This seem to do the trick!</description>
      <pubDate>Fri, 01 Apr 2016 08:08:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245683#M333187</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-01T08:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245924#M333188</link>
      <description>&lt;P&gt;@Anonymous﻿&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may want to look at &lt;A href="http://synergiscadblog.com/2014/09/23/copy-files-easily-with-ilogic-design-copy-even-without-ilogic-rules-in-the-design/" target="_blank"&gt;iLogic Copy Design&lt;/A&gt;.&amp;nbsp; Its already built into Inventor and will copy all the related stuff including drawings.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2016 11:29:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245924#M333188</guid>
      <dc:creator>Mark.Lancaster</dc:creator>
      <dc:date>2016-04-01T11:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Show Feature Only When Material = PolyPropylene (I LOGIC)</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245999#M333189</link>
      <description>Hi Mark,&lt;BR /&gt;&lt;BR /&gt;Yeah that is a possibility - the only downfall is that i have to manually select the drawing files, where as the Design Cloner brings up a list of all related drawings.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Apr 2016 12:05:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/show-feature-only-when-material-polypropylene-i-logic/m-p/6245999#M333189</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-01T12:05:30Z</dc:date>
    </item>
  </channel>
</rss>

