<?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: Origin folder always expanded in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9308001#M154160</link>
    <description>&lt;P&gt;You epic! You genius!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/74757"&gt;@mcgyvr&lt;/a&gt; !!!&lt;/P&gt;</description>
    <pubDate>Mon, 10 Feb 2020 17:46:22 GMT</pubDate>
    <dc:creator>admaiora</dc:creator>
    <dc:date>2020-02-10T17:46:22Z</dc:date>
    <item>
      <title>Origin folder always expanded</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9307757#M154157</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is there&amp;nbsp; a way a trick&amp;nbsp; to create&amp;nbsp; a part and have already expanded the Origin Folder?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 16:11:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9307757#M154157</guid>
      <dc:creator>admaiora</dc:creator>
      <dc:date>2020-02-10T16:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Origin folder always expanded</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9307896#M154158</link>
      <description>&lt;P&gt;Open your part template.&lt;/P&gt;
&lt;P&gt;Create a new design view rep.&lt;/P&gt;
&lt;P&gt;Activate that design view rep.&lt;/P&gt;
&lt;P&gt;Expand the origin folder.&lt;/P&gt;
&lt;P&gt;Save the template&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 17:14:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9307896#M154158</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2020-02-10T17:14:58Z</dc:date>
    </item>
    <item>
      <title>Re: Origin folder always expanded</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9307987#M154159</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2186258"&gt;@admaiora&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I'd go with&amp;nbsp;mcgyvr&amp;nbsp;'s suggestion, but the other way to do this would be to place this ilogic rule in your template, and then set an event trigger "New Document" event trigger so that the rule runs when a new file is created from the template file.&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" rel="noopener"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Dim oDoc As Document
oDoc = ThisApplication.ActiveEditDocument

Dim oPane As BrowserPane
oPane = oDoc.BrowserPanes.ActivePane

Dim oDocNode As BrowserNode
oDocNode = oPane.TopNode

Dim oNode As BrowserNode
For Each oNode In oDocNode.BrowserNodes	
	If oNode.FullPath.Contains("Origin") Then
	oNode.Expanded = True
	End If
Next&lt;/PRE&gt;
&lt;P&gt;n&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 17:46:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9307987#M154159</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2020-02-10T17:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Origin folder always expanded</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9308001#M154160</link>
      <description>&lt;P&gt;You epic! You genius!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/74757"&gt;@mcgyvr&lt;/a&gt; !!!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 17:46:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9308001#M154160</guid>
      <dc:creator>admaiora</dc:creator>
      <dc:date>2020-02-10T17:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Origin folder always expanded</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9308004#M154161</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/105031"&gt;@Curtis_W&lt;/a&gt; !&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You epic and genius too!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 17:47:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9308004#M154161</guid>
      <dc:creator>admaiora</dc:creator>
      <dc:date>2020-02-10T17:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Origin folder always expanded</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9719766#M154162</link>
      <description>&lt;P&gt;&lt;EM&gt;Looking on the forum on how to expand origin folder in a selected component in an assembly, I found your interesting code solution addressed to a part template.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Since my case has to do with large assemblies I would like to know if it would be possible to adapt it for this purpose:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;At the time to repetitively place and constraint components at one of their origin planes (against a face, edge or the like from other parts), it is quite annoying to search and expand once and again the origin folder in the browser pane and find the right plane to work with.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Although is true that once the component is just placed in the assembly, its location in the browser it is always at the lower position, but in large assemblies, it happens quite often that the other half to constraint to, might be a mile away in the browser but on the very nearby at the screen area.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;In this scenario, a rule that would expand the origin folder from the selected component&amp;nbsp; (usually the one that has more depths/parents on the browser), before launching the constraint menu/options dialogue,&amp;nbsp; would be a great time saver.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Since the recently placed component will always be found at the bottom of the pane,&amp;nbsp; e&lt;/EM&gt;xpanding the origin folder of the more hidden component and look there for the right plane, before the constraint menu call, it would save a lot of mouse clicks,&amp;nbsp; since at the time to make the first selection you would already be placed at the right spot in the plane browser.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&amp;nbsp;&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>Sun, 30 Aug 2020 20:06:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9719766#M154162</guid>
      <dc:creator>leonque</dc:creator>
      <dc:date>2020-08-30T20:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Origin folder always expanded</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9720406#M154163</link>
      <description>&lt;P&gt;Hi, if you repeatedly constrain components using their origin planes, or specific planar faces to specific origin planes, you could write your own alignment tool using the API.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Somehing like: first pick a planar face on one component, then pick anything on the second component and align the face to the XY plane of Component2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Aug 2020 08:29:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/origin-folder-always-expanded/m-p/9720406#M154163</guid>
      <dc:creator>Hochenauer</dc:creator>
      <dc:date>2020-08-31T08:29:55Z</dc:date>
    </item>
  </channel>
</rss>

