<?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: Question on Running commands using API: how to provide 2 inputs through API? in Inventor Programming Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771709#M132499</link>
    <description>&lt;P&gt;Why not use the method that is already provided in the API rather than running the command using CommandManager?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AssemblyComponentDefinition.&lt;STRONG&gt;AnalyzeInterference&lt;/STRONG&gt;( &lt;STRONG&gt;&lt;EM&gt;Set1&lt;/EM&gt;&lt;/STRONG&gt; As ObjectCollection, [&lt;STRONG&gt;&lt;EM&gt;Set2&lt;/EM&gt;&lt;/STRONG&gt;] As Variant ) As InterferenceResults&lt;/P&gt;</description>
    <pubDate>Wed, 06 Feb 2013 20:51:46 GMT</pubDate>
    <dc:creator>gavbath</dc:creator>
    <dc:date>2013-02-06T20:51:46Z</dc:date>
    <item>
      <title>Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771449#M132497</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brian Ekins gave a good information on how to Run Commands Using the API. And he also shows API can&amp;nbsp;provide one sets of input to the command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my case, the Inventor command "analyze interference" need two sets of inputs. I tried to feed the commands with two selectset input&amp;nbsp;throght API (see attached code). But the command looks like only take one set of them.So the behavior is not what I want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if it is possible, &amp;nbsp;how to provide 2 set of pre-defined input to inventor commands throught API?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Limin&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>Wed, 06 Feb 2013 18:52:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771449#M132497</guid>
      <dc:creator>liminma8458</dc:creator>
      <dc:date>2013-02-06T18:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771696#M132498</link>
      <description>&lt;P&gt;I believe the problem you are having here is because the dialog box still shows and wants you to select "OK."&lt;/P&gt;&lt;P&gt;As you can't provide the "OK" via the API, you can't complete the command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Brian Ekins' blog post he said this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"&lt;SPAN&gt;&amp;nbsp;Most commands, even if they support pre-selection of entities, will still allow additional selection so they will still require user input.&amp;nbsp; For example the Fillet command will take any pre-selected edges as input but still displays the dialog to allow the user to select more edges and specify any other options."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I don't think you can finish the analyze interference command through the API call.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 20:46:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771696#M132498</guid>
      <dc:creator>gavbath</dc:creator>
      <dc:date>2013-02-06T20:46:56Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771709#M132499</link>
      <description>&lt;P&gt;Why not use the method that is already provided in the API rather than running the command using CommandManager?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;AssemblyComponentDefinition.&lt;STRONG&gt;AnalyzeInterference&lt;/STRONG&gt;( &lt;STRONG&gt;&lt;EM&gt;Set1&lt;/EM&gt;&lt;/STRONG&gt; As ObjectCollection, [&lt;STRONG&gt;&lt;EM&gt;Set2&lt;/EM&gt;&lt;/STRONG&gt;] As Variant ) As InterferenceResults&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 20:51:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771709#M132499</guid>
      <dc:creator>gavbath</dc:creator>
      <dc:date>2013-02-06T20:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771710#M132500</link>
      <description>&lt;P&gt;The program runs well, but only take the first set to do the analysis. What I want is to analyse the first set against the second set.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 20:52:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771710#M132500</guid>
      <dc:creator>liminma8458</dc:creator>
      <dc:date>2013-02-06T20:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771712#M132501</link>
      <description>&lt;P&gt;I want the highlight effect of the interference volumn as in the command. The API does not provide that&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 20:54:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771712#M132501</guid>
      <dc:creator>liminma8458</dc:creator>
      <dc:date>2013-02-06T20:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771715#M132502</link>
      <description>&lt;P&gt;Get the&amp;nbsp;&lt;SPAN style="line-height: normal; font-size: x-small; font-weight: bold;"&gt;InterferenceResult.InterferenceBody (which is a SurfaceBody) and display it using ClientGraphics?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 20:56:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771715#M132502</guid>
      <dc:creator>gavbath</dc:creator>
      <dc:date>2013-02-06T20:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771719#M132503</link>
      <description>&lt;P&gt;Just wonder how to reach the object of "InterferenceResult.InterferenceBody", the Interferenceresult only shows centroid, occurrenceone,occurrencetwo, type and volume (double type). oResults.InterferenceBody returns error. as attached&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to do that? thanks&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 21:02:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771719#M132503</guid>
      <dc:creator>liminma8458</dc:creator>
      <dc:date>2013-02-06T21:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771752#M132504</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Public Sub ShowInterference()&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oDoc As AssemblyDocument&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oDoc = ThisApplication.ActiveDocument&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oCompDef As ComponentDefinition&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oCompDef = oDoc.ComponentDefinition&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSelect1 As ComponentOccurrence&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSelect1 = oDoc.SelectSet.Item(1)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSelect2 As ComponentOccurrence&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSelect2 = oDoc.SelectSet.Item(2)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oCheckSet As ObjectCollection&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oCheckSet = ThisApplication.TransientObjects.CreateObjectCollection&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call oCheckSet.Add(oSelect1)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Call oCheckSet.Add(oSelect2)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oIntBody As SurfaceBody&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oIntBody = oDoc.ComponentDefinition.AnalyzeInterference(oCheckSet).Item(1).InterferenceBody&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Create the ClientGraphics object.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oClientGraphics = oCompDef.ClientGraphicsCollection.Add("Sample3DGraphicsID")&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Create a new graphics node within the client graphics objects.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSurfacesNode As GraphicsNode&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSurfacesNode = oClientGraphics.AddNode(1)&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oBody As SurfaceBody&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oBody = oIntBody&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Create client graphics based on the transient body&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oSurfaceGraphics As SurfaceGraphics&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSurfaceGraphics = oSurfacesNode.AddSurfaceGraphics(oBody)&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ' Update the view to see the resulting curves.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ThisApplication.ActiveView.Update&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;EM&gt;End Sub&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Select two components that interfere and then runthe routine. After you have run it, hide the 2 components and you'll see the interference body left over.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 21:22:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771752#M132504</guid>
      <dc:creator>gavbath</dc:creator>
      <dc:date>2013-02-06T21:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771798#M132505</link>
      <description>&lt;P&gt;Set oIntBody = oDoc.ComponentDefinition.AnalyzeInterference(oCheckSet).Item(1).InterferenceBody&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above line does NOTwork. InterferenceBody is not recognized. &amp;nbsp;"oDoc.ComponentDefinition.AnalyzeInterference(oCheckSet).Item(1) " only has centroid, occurrenceone,occurrencetwo, type and volume (double).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;More advise?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 22:07:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771798#M132505</guid>
      <dc:creator>liminma8458</dc:creator>
      <dc:date>2013-02-06T22:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771805#M132506</link>
      <description>&lt;P&gt;I wouldn't post code on here if I hadn't tested it myself.... &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Two interfering parts.&lt;IMG title="1.JPG" border="0" alt="1.JPG" align="middle" src="https://forums.autodesk.com/t5/image/serverpage/image-id/46966i5575D6B43ABAFCE8/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Select them both&lt;/P&gt;&lt;P&gt;&lt;IMG title="2.JPG" border="0" alt="2.JPG" align="middle" src="https://forums.autodesk.com/t5/image/serverpage/image-id/46967i7D38CF16E416AE4D/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Run macro, interference is left behind&lt;/P&gt;&lt;P&gt;&lt;IMG title="3.JPG" border="0" alt="3.JPG" align="middle" src="https://forums.autodesk.com/t5/image/serverpage/image-id/46968iE68CC02ED88055D2/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 22:14:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771805#M132506</guid>
      <dc:creator>gavbath</dc:creator>
      <dc:date>2013-02-06T22:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771825#M132507</link>
      <description>&lt;P&gt;I add a definition line in your code: Dim oClientGraphics As ClientGraphics.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And create two parts as yours and make an assembly, want to repeat your &lt;SPAN&gt;success&lt;/SPAN&gt;, still not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stop at (see attached error massage): XXXXXX.....InterferenceBody&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am running on Inventor 2011. But I don't think this is a new feature if there is any.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 22:43:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771825#M132507</guid>
      <dc:creator>liminma8458</dc:creator>
      <dc:date>2013-02-06T22:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771873#M132508</link>
      <description>&lt;P&gt;Very strange. I should have mentioned that I am using Inventor 2013 but I don't know if the InterferenceBody is new since 2011. I can't imagine it would be.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe post your dataset and I'll try it in 2013.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 23:45:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771873#M132508</guid>
      <dc:creator>gavbath</dc:creator>
      <dc:date>2013-02-06T23:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771877#M132509</link>
      <description>&lt;P&gt;I spoke to soon..... The InterferenceBody was new in Inventor 2012 sorry.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG title="OH.JPG" border="0" alt="OH.JPG" align="middle" src="https://forums.autodesk.com/t5/image/serverpage/image-id/46973i5185F953420A5CB2/image-size/original?v=mpbl-1&amp;amp;px=-1" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Feb 2013 23:51:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3771877#M132509</guid>
      <dc:creator>gavbath</dc:creator>
      <dc:date>2013-02-06T23:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Question on Running commands using API: how to provide 2 inputs through API?</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3772266#M132510</link>
      <description>&lt;P&gt;Yes. The code works for Inventor 2013, but not 2011.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I still have the question: is it possible to&amp;nbsp;provide 2 inputs&amp;nbsp;to run Inventor commands using API?&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ^_^&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 07 Feb 2013 14:08:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-forum/question-on-running-commands-using-api-how-to-provide-2-inputs/m-p/3772266#M132510</guid>
      <dc:creator>liminma8458</dc:creator>
      <dc:date>2013-02-07T14:08:48Z</dc:date>
    </item>
  </channel>
</rss>

