<?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 - Bulk Feature Browser Rename in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055730#M280562</link>
    <description>&lt;P&gt;Hi jason.snyder,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have the time to&amp;nbsp; include the Excel part of this, but here is a quick example of how to rename all work planes (skipping the origin planes).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also just as a tip, you can search and ask programming questions of this type on the Inventor Customization forum too:&lt;BR /&gt;&lt;A href="http://forums.autodesk.com/t5/Autodesk-Inventor-Customization/bd-p/120" target="_blank"&gt;http://forums.autodesk.com/t5/Autodesk-Inventor-Customization/bd-p/120&lt;/A&gt;&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"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;oDoc = ThisApplication.activedocument
i = 1
For Each oWorkPlane In oDoc.ComponentDefinition.WorkPlanes
	'skip origin planes
	If oWorkPlane.IsCoordinateSystemElement = False Then 
	oWorkPlane.Name = "WP" &amp;amp; i
	i=i+1
	End If
Next&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 02 May 2017 15:55:03 GMT</pubDate>
    <dc:creator>Curtis_W</dc:creator>
    <dc:date>2017-05-02T15:55:03Z</dc:date>
    <item>
      <title>iLogic - Bulk Feature Browser Rename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7054333#M280560</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I'm currently looking for a solution to bulk rename browser items.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've attached photo showing how to rename one at a time.&amp;nbsp;However, this is time consuming as I have 300-400 to go.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a excel spread sheet marrying current name to future name. Cell A1 = Work Plane 88, Cell B1 = WP88 etc.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone have code so I can quickly rename the rest of my 300-400 work planes via my spread sheet?&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 06:17:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7054333#M280560</guid>
      <dc:creator>jason_snyder</dc:creator>
      <dc:date>2017-05-02T06:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - Bulk Feature Browser Rename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055117#M280561</link>
      <description>&lt;P&gt;You will just need to do a loop (for each) through each workplane name and use excel find row to find the one matching your workplane name then change the name to the cell next to it..&lt;/P&gt;
&lt;P&gt;See if you can figure it out from here..&lt;/P&gt;
&lt;P&gt;&lt;A href="https://knowledge.autodesk.com/support/inventor-products/learn-explore/caas/CloudHelp/cloudhelp/2015/ENU/Inventor-Help/files/GUID-00F9D915-B53A-46BF-AAAC-3535F9FD9970-htm.html" target="_blank"&gt;https://knowledge.autodesk.com/support/inventor-products/learn-explore/caas/CloudHelp/cloudhelp/2015/ENU/Inventor-Help/files/GUID-00F9D915-B53A-46BF-AAAC-3535F9FD9970-htm.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not please post your excel file and ipt file and someone can whip something up for you..&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 12:56:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055117#M280561</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2017-05-02T12:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - Bulk Feature Browser Rename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055730#M280562</link>
      <description>&lt;P&gt;Hi jason.snyder,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't have the time to&amp;nbsp; include the Excel part of this, but here is a quick example of how to rename all work planes (skipping the origin planes).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also just as a tip, you can search and ask programming questions of this type on the Inventor Customization forum too:&lt;BR /&gt;&lt;A href="http://forums.autodesk.com/t5/Autodesk-Inventor-Customization/bd-p/120" target="_blank"&gt;http://forums.autodesk.com/t5/Autodesk-Inventor-Customization/bd-p/120&lt;/A&gt;&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"&gt;http://inventortrenches.blogspot.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;oDoc = ThisApplication.activedocument
i = 1
For Each oWorkPlane In oDoc.ComponentDefinition.WorkPlanes
	'skip origin planes
	If oWorkPlane.IsCoordinateSystemElement = False Then 
	oWorkPlane.Name = "WP" &amp;amp; i
	i=i+1
	End If
Next&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 15:55:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055730#M280562</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2017-05-02T15:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - Bulk Feature Browser Rename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055753#M280563</link>
      <description>&lt;P&gt;Another option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;oDoc = ThisApplication.activedocument
i = 1
For Each oWorkPlane In oDoc.ComponentDefinition.WorkPlanes
	'skip origin planes
	If oWorkPlane.IsCoordinateSystemElement = False Then 
	oWorkPlane.Name = oWorkPlane.Name.Replace("Work Plane", "WP")
	End If
Next&lt;/PRE&gt;</description>
      <pubDate>Tue, 02 May 2017 16:00:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055753#M280563</guid>
      <dc:creator>Curtis_W</dc:creator>
      <dc:date>2017-05-02T16:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - Bulk Feature Browser Rename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055790#M280564</link>
      <description>&lt;P&gt;Great examples from Curtis (again.. of course)...&lt;/P&gt;
&lt;P&gt;Assuming that the naming is as simple as Work Plane 88 to WP88 then no excel is needed...&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 16:06:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7055790#M280564</guid>
      <dc:creator>mcgyvr</dc:creator>
      <dc:date>2017-05-02T16:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - Bulk Feature Browser Rename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7057078#M280565</link>
      <description>&lt;P&gt;Thanks Curtis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both your codes work perfectly,&amp;nbsp;However, just one more question ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I get the end number in the rename to increment? Instead of going 1,2,3,4 etc, I want say 0,5,10 etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought&amp;nbsp;where i = i+1 you'd have i = i+5,&amp;nbsp;though this comes with an error. Any thoughts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 00:01:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7057078#M280565</guid>
      <dc:creator>jason_snyder</dc:creator>
      <dc:date>2017-05-03T00:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: iLogic - Bulk Feature Browser Rename</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7057448#M280566</link>
      <description>&lt;P&gt;Disregard previous, I found the error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To get the i = i+5 working I had to alter the "WP" in this line: oWorkPlane.Name = "WP" &amp;amp; i. &amp;amp; then re-run.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;All works. Thanks again Curtis. So speedy now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Jason Snyder&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2017 06:25:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ilogic-bulk-feature-browser-rename/m-p/7057448#M280566</guid>
      <dc:creator>jason_snyder</dc:creator>
      <dc:date>2017-05-03T06:25:49Z</dc:date>
    </item>
  </channel>
</rss>

