<?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 or VBA to Select via &amp;quot;Component Offset&amp;quot; the &amp;quot;Isolate&amp;amp;a in Inventor Programming - iLogic, Macros, AddIns &amp; Apprentice</title>
    <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8311233#M89644</link>
    <description>&lt;P&gt;Correct, I'm trying to get the same thing but think it is much simpler using the component offset selection then isolate like in the video.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Oct 2018 21:15:02 GMT</pubDate>
    <dc:creator>ferrisb</dc:creator>
    <dc:date>2018-10-03T21:15:02Z</dc:date>
    <item>
      <title>iLogic or VBA to Select via "Component Offset" the "Isolate"</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8311025#M89638</link>
      <description>&lt;P&gt;Greetings All,&lt;/P&gt;&lt;P&gt;I'm setting up a for to resize a box with stiffeners.&amp;nbsp; (which I am using a simple example)&lt;/P&gt;&lt;P&gt;After someone runs the re-size, I want it to trigger an event to;&lt;/P&gt;&lt;P&gt;Select via "component offset" then "isolate"&lt;/P&gt;&lt;P&gt;I personally think it's easy enough to do manually in a few seconds, but, that's what I have been tasked with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's a video showing how I would do this manually after a re-size.&lt;/P&gt;&lt;P&gt;If anyone could take a look and give me some direction on how to do this, it would be much appreciated : )&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="https://autode.sk/2Rndl5t" target="_blank"&gt;https://autode.sk/2Rndl5t&lt;/A&gt;&lt;/STRONG&gt;&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>Wed, 03 Oct 2018 19:39:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8311025#M89638</guid>
      <dc:creator>ferrisb</dc:creator>
      <dc:date>2018-10-03T19:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic or VBA to Select via "Component Offset" the "Isolate&amp;q</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8311219#M89641</link>
      <description>&lt;P&gt;This isn't the exact same thing but it reminds me of what you're doing. Take a look and let me know if it can work.&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/inventor-customization/turn-off-visibility-off-all-parts-in-an-area/m-p/8268889#M88864" target="_blank"&gt;https://forums.autodesk.com/t5/inventor-customization/turn-off-visibility-off-all-parts-in-an-area/m-p/8268889#M88864&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 21:00:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8311219#M89641</guid>
      <dc:creator>clutsa</dc:creator>
      <dc:date>2018-10-03T21:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic or VBA to Select via "Component Offset" the "Isolate&amp;a</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8311233#M89644</link>
      <description>&lt;P&gt;Correct, I'm trying to get the same thing but think it is much simpler using the component offset selection then isolate like in the video.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Oct 2018 21:15:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8311233#M89644</guid>
      <dc:creator>ferrisb</dc:creator>
      <dc:date>2018-10-03T21:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic or VBA to Select via "Component Offset" the "Isolate&amp;a</title>
      <link>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8313756#M89700</link>
      <description>&lt;P&gt;This is the best I can come up with.&lt;/P&gt;&lt;PRE&gt;Dim app As Inventor.Application = ThisApplication
Dim doc As Document = app.ActiveDocument
Dim AllwaysOnComp = Component.InventorComponent("yourPartHere") 'change this to a part that never gets hidden
Dim selCmd As ControlDefinition = app.CommandManager.ControlDefinitions("AssemblyEnhSelComponentBBCmd")
doc.SelectSet.Select(AllwaysOnComp)
selCmd.Execute2(True)
Dim isoCmd As ControlDefinition = app.CommandManager.ControlDefinitions("AssemblyIsolateCmd")
isoCmd.Execute&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Oct 2018 18:36:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-programming-ilogic/ilogic-or-vba-to-select-via-quot-component-offset-quot-the-quot/m-p/8313756#M89700</guid>
      <dc:creator>clutsa</dc:creator>
      <dc:date>2018-10-04T18:36:20Z</dc:date>
    </item>
  </channel>
</rss>

