<?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: Please Review This Rule in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511446#M385757</link>
    <description>&lt;P&gt;Many times I've had the rule like that work perfectly because I have the bigger parts last so it runs in order of the code. Infact just in the .iam that this file is in I havve the rule written for 7 other parts that all work that way. So it just doesnt make sense why it worked 7 times for me then not for this one.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Feb 2015 16:38:02 GMT</pubDate>
    <dc:creator>ASchlaack</dc:creator>
    <dc:date>2015-02-18T16:38:02Z</dc:date>
    <item>
      <title>Please Review This Rule</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511355#M385755</link>
      <description>&lt;P&gt;In the Center Cross Member file I have a very basic rule. It's driven off the Length parameter in Skeleton. I can't figure out why it will only fire for the first two cases in the rule. The rule is a basic one I've written many times before but it just won't work for some reason. What is wrong with it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*Attached is a .zip with the cross member and the skeleton&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 15:42:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511355#M385755</guid>
      <dc:creator>ASchlaack</dc:creator>
      <dc:date>2015-02-18T15:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Please Review This Rule</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511422#M385756</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;You have to select properly the intervals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;With your inicial rule, imagine you select a length=200in :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, what did you expect the program will gonna do??!! 200 it's bigger than 180, but it's also bigger than 120 and also 60!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to describe exactly the intervals:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt; &lt;SPAN&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN&gt;60&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;d306&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;0.708&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt;

&lt;SPAN&gt;Else&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN&gt;60&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;And&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt; &lt;SPAN&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN&gt;120&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;d306&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;2&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;0.792&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt;

&lt;SPAN&gt;Else&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN&gt;120&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;And&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt; &lt;SPAN&gt;&amp;lt;=&lt;/SPAN&gt; &lt;SPAN&gt;180&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;d306&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt;

&lt;SPAN&gt;Else&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt; &lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN&gt;180&lt;/SPAN&gt; &lt;SPAN&gt;in&lt;/SPAN&gt; &lt;SPAN&gt;Then&lt;/SPAN&gt;
    &lt;SPAN&gt;d306&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;Length&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;

&lt;SPAN&gt;End&lt;/SPAN&gt; &lt;SPAN&gt;If&lt;/SPAN&gt;
&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 Feb 2015 16:21:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511422#M385756</guid>
      <dc:creator>CCarreiras</dc:creator>
      <dc:date>2015-02-18T16:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Please Review This Rule</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511446#M385757</link>
      <description>&lt;P&gt;Many times I've had the rule like that work perfectly because I have the bigger parts last so it runs in order of the code. Infact just in the .iam that this file is in I havve the rule written for 7 other parts that all work that way. So it just doesnt make sense why it worked 7 times for me then not for this one.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 16:38:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511446#M385757</guid>
      <dc:creator>ASchlaack</dc:creator>
      <dc:date>2015-02-18T16:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Please Review This Rule</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511473#M385758</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Even with ther changes i maded in the code, it continues to work bad.&lt;/P&gt;&lt;P&gt;I believe the file is corrupt.&lt;/P&gt;&lt;P&gt;Create another one from scratch.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Send the file to support.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2015 16:53:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/please-review-this-rule/m-p/5511473#M385758</guid>
      <dc:creator>CCarreiras</dc:creator>
      <dc:date>2015-02-18T16:53:47Z</dc:date>
    </item>
  </channel>
</rss>

