<?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: Ongoing Number Tags in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/ongoing-number-tags/m-p/10813020#M88965</link>
    <description>&lt;P&gt;How are you currently doing it?&amp;nbsp; I'm guessing it's a sketch with some text; then you add additional bridges to hold everything together.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you switch the font to a stencil font (e.g. &lt;A href="https://www.fontspace.com/category/stencil" target="_blank"&gt;https://www.fontspace.com/category/stencil&lt;/A&gt;), you could simplify the process by creating a user parameter for the number, and insert that parameter as your sketch text.&amp;nbsp; Increment the parameter by 1 for each output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Depending on the output you need, I don't think it would be too difficult to automate.&amp;nbsp; We had to output 15,000 unique triangle shapes as DXF files for one project.&amp;nbsp; Once the automation was running, Inventor spat them out at about one every 0.5 seconds.&amp;nbsp; Very satisfying!&lt;/P&gt;</description>
    <pubDate>Thu, 09 Dec 2021 21:51:04 GMT</pubDate>
    <dc:creator>pcrawley</dc:creator>
    <dc:date>2021-12-09T21:51:04Z</dc:date>
    <item>
      <title>Ongoing Number Tags</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ongoing-number-tags/m-p/10812939#M88964</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am creating number tags and i know there is a fast way of doing this i just cant remember how. Ill attach a picture of what the part is. It will start from 4001 then 4002 and so on for a couple hundred. Any help is appreciated,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4001 Number Tag.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/999571iCD9C26C7846D60F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="4001 Number Tag.png" alt="4001 Number Tag.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 21:21:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ongoing-number-tags/m-p/10812939#M88964</guid>
      <dc:creator>randy.redekop</dc:creator>
      <dc:date>2021-12-09T21:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Ongoing Number Tags</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ongoing-number-tags/m-p/10813020#M88965</link>
      <description>&lt;P&gt;How are you currently doing it?&amp;nbsp; I'm guessing it's a sketch with some text; then you add additional bridges to hold everything together.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you switch the font to a stencil font (e.g. &lt;A href="https://www.fontspace.com/category/stencil" target="_blank"&gt;https://www.fontspace.com/category/stencil&lt;/A&gt;), you could simplify the process by creating a user parameter for the number, and insert that parameter as your sketch text.&amp;nbsp; Increment the parameter by 1 for each output.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Depending on the output you need, I don't think it would be too difficult to automate.&amp;nbsp; We had to output 15,000 unique triangle shapes as DXF files for one project.&amp;nbsp; Once the automation was running, Inventor spat them out at about one every 0.5 seconds.&amp;nbsp; Very satisfying!&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 21:51:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ongoing-number-tags/m-p/10813020#M88965</guid>
      <dc:creator>pcrawley</dc:creator>
      <dc:date>2021-12-09T21:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Ongoing Number Tags</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/ongoing-number-tags/m-p/10813239#M88966</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11760879"&gt;@randy.redekop&lt;/a&gt;&amp;nbsp;Peter is right - an easy iLogic task!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I automated something similar recently - I only had about 10 to do but was bored... For each number of a range it updates a parameter with the range value (which was embossed onto the label), it then updates, saves (with newly generated name) and moves to the next number.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;Dim oDoc As PartDocument = ThisDoc.Document
Dim oDef As PartComponentDefinition = oDoc.ComponentDefinition

Dim i As Integer = 1
Dim oPath As String = ThisDoc.Path &amp;amp; "\"

For i = 1 To 100
	Parameter("XXXXX") = CStr(i)
	RuleParametersOutput()
	InventorVb.DocumentUpdate()
	
	
	oDoc.SaveAs(oPath &amp;amp; "Common File Name_" &amp;amp; CStr(i) &amp;amp; ".ipt",True)
	
Next&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 00:16:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/ongoing-number-tags/m-p/10813239#M88966</guid>
      <dc:creator>gcoombridge</dc:creator>
      <dc:date>2021-12-10T00:16:54Z</dc:date>
    </item>
  </channel>
</rss>

