<?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: Having text size based on another parameter in Inventor Forum</title>
    <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252181#M214862</link>
    <description>&lt;P&gt;Hi Lewis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I like your idea and it seems to work, but the difference is my height won't be changing, but my width will be changing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would that change the way I apply the rule.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Sep 2018 09:41:48 GMT</pubDate>
    <dc:creator>icebot53</dc:creator>
    <dc:date>2018-09-07T09:41:48Z</dc:date>
    <item>
      <title>Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8249906#M214858</link>
      <description>&lt;P&gt;Good day Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way that I can have the text size on this part be fixed to another parameter which updates by e.g. the toe board length.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As the toeboard gets bigger, I want to increase the text size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 13:50:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8249906#M214858</guid>
      <dc:creator>icebot53</dc:creator>
      <dc:date>2018-09-06T13:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8250345#M214859</link>
      <description>&lt;P&gt;Hi! There might be API or iLogic solution here. But, the most straightforward approach I can think of is to do the following.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Edit Extrusion3 and change the operation to New Body.&lt;/P&gt;
&lt;P&gt;2) Direct Edit -&amp;gt; Body -&amp;gt; pick the text body -&amp;gt; Scale -&amp;gt; Non-uniform -&amp;gt; set Y = 1 and X and Z to the scale associated with parameters.&lt;/P&gt;
&lt;P&gt;3) Combine -&amp;gt; Cut -&amp;gt; pick the first solid as base and second body as tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 15:52:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8250345#M214859</guid>
      <dc:creator>johnsonshiue</dc:creator>
      <dc:date>2018-09-06T15:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8250356#M214860</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using iLogic, this can be achieved.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Lets say the board is 100mm high, and you want the text to always be half the size of that (50mm), create two custom parameters:&lt;/LI&gt;&lt;LI&gt;One parameter should be "BoardHeight" and should be set as 100mm,&amp;nbsp;in this example.&lt;/LI&gt;&lt;LI&gt;The second parameter should be called "TextSize" and should be set as BoardHeight/2&lt;/LI&gt;&lt;LI&gt;Now in your model, go to&amp;nbsp;sketch that defines the board height and change the dimension to be BoardHeight&lt;/LI&gt;&lt;LI&gt;Now go to the manage tab and select "Add Rule" from the iLogic pane.&lt;/LI&gt;&lt;LI&gt;Paste this code in. Where it says "Sketch2", change it to the sketch that contains&amp;nbsp;your text&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SyntaxEditor Code Snippet&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;odoc&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;PartDocument&lt;/SPAN&gt;

&lt;SPAN&gt;odoc&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;ThisApplication&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ActiveDocument&lt;/SPAN&gt;

 
&lt;SPAN&gt;Dim&lt;/SPAN&gt; &lt;SPAN&gt;osketch&lt;/SPAN&gt; &lt;SPAN&gt;As&lt;/SPAN&gt; &lt;SPAN&gt;Sketch&lt;/SPAN&gt;

&lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;The used sketch name in the extrusion is Text&lt;/SPAN&gt;

&lt;SPAN&gt;osketch&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;odoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ComponentDefinition&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Sketches&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;Sketch2&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;

 
&lt;SPAN&gt;osketch&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;TextBoxes&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Item&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;FormattedText&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;StyleOverride FontSize='&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN&gt;TextSize&lt;/SPAN&gt;&lt;SPAN&gt;/&lt;/SPAN&gt;&lt;SPAN&gt;10&lt;/SPAN&gt; &lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;'&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt; &lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN&gt;oSketch&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;TextBoxes&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Text&lt;/SPAN&gt; &lt;SPAN&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;/StyleOverride&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;

 
&lt;SPAN&gt;odoc&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Update&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;Now whenever the BoardHeight parameter is altered, the text size will change accordingly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you want the text size to be defined differently, for example the board height - 20mm, then change the "TextSize" parameter to be BoardHeight-20mm instead.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you need any more help with this let me know &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;&lt;SPAN style="line-height: 100%;"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Lewis Young&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Tahoma" size="1" color="#9933ff"&gt;Windows 7 x64 - 32GB Ram&lt;BR /&gt;Intel Xeon E5-1620 v2 @ 3.70GHz&lt;BR /&gt;nVidia Quadro M2000 - 4GB&lt;BR /&gt;Inventor Professional 2017.3&lt;BR /&gt;Vault Basic 2017&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 15:56:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8250356#M214860</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-06T15:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8250579#M214861</link>
      <description>&lt;P&gt;Here's a screencast showing that example in action: &lt;A href="https://autode.sk/2wMSVJI" target="_blank"&gt;https://autode.sk/2wMSVJI&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;IFRAME src="https://screencast.autodesk.com/Embed/Timeline/9411fbdf-a63e-41d9-90f2-a4fa060e243a" width="640" height="430" frameborder="0" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen"&gt;&lt;/IFRAME&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="1"&gt;&lt;SPAN style="color: #808000;"&gt;kelly.young&lt;/SPAN&gt;&amp;nbsp;has embedded your&amp;nbsp;screencast for clarity. &lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Sep 2018 19:11:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8250579#M214861</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-06T19:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252181#M214862</link>
      <description>&lt;P&gt;Hi Lewis,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I like your idea and it seems to work, but the difference is my height won't be changing, but my width will be changing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would that change the way I apply the rule.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 09:41:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252181#M214862</guid>
      <dc:creator>icebot53</dc:creator>
      <dc:date>2018-09-07T09:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252231#M214863</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Okay i see, so as the board gets wider what do you want the text to do?&lt;/P&gt;&lt;P&gt;If you're increasing the text size, it will get to a point where the height of the board can't accommodate the text size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 100%;"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Lewis Young&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Tahoma" size="1" color="#9933ff"&gt;Windows 7 x64 - 32GB Ram&lt;BR /&gt;Intel Xeon E5-1620 v2 @ 3.70GHz&lt;BR /&gt;nVidia Quadro M2000 - 4GB&lt;BR /&gt;Inventor Professional 2017.3&lt;BR /&gt;Vault Basic 2017&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 09:56:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252231#M214863</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-07T09:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252247#M214864</link>
      <description>&lt;P&gt;I want to have fixed values e.g. if the tblength is 2400 the text size must be 450, iftblength is 2000 text size must be 400.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will manually calculate and place these text size values once.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:06:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252247#M214864</guid>
      <dc:creator>icebot53</dc:creator>
      <dc:date>2018-09-07T10:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252257#M214865</link>
      <description>&lt;P&gt;Okay that's not a problem,&amp;nbsp;so the width is the same on all boards? if so, what would the width be?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 100%;"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Lewis Young&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Tahoma" size="1" color="#9933ff"&gt;Windows 7 x64 - 32GB Ram&lt;BR /&gt;Intel Xeon E5-1620 v2 @ 3.70GHz&lt;BR /&gt;nVidia Quadro M2000 - 4GB&lt;BR /&gt;Inventor Professional 2017.3&lt;BR /&gt;Vault Basic 2017&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:12:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252257#M214865</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-07T10:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252268#M214866</link>
      <description>&lt;P&gt;Here you are.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/543605i49F4C19D1D84A0EA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:17:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252268#M214866</guid>
      <dc:creator>icebot53</dc:creator>
      <dc:date>2018-09-07T10:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252280#M214867</link>
      <description>&lt;P&gt;Thanks for that.&lt;/P&gt;&lt;P&gt;As you can see, if you keep the width at 210 and increase the text, it will become bigger than the part itself, which i assume you don't want?&lt;/P&gt;&lt;P&gt;A limit would have to be applied so that text size cannot be more than the board height in this case&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 100%;"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Lewis Young&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Tahoma" size="1" color="#9933ff"&gt;Windows 7 x64 - 32GB Ram&lt;BR /&gt;Intel Xeon E5-1620 v2 @ 3.70GHz&lt;BR /&gt;nVidia Quadro M2000 - 4GB&lt;BR /&gt;Inventor Professional 2017.3&lt;BR /&gt;Vault Basic 2017&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:21:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252280#M214867</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-07T10:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252289#M214868</link>
      <description>&lt;P&gt;See it isn't technically the height that is the problem. When I add a text to the board, I constrain the 4 corners of the text to the 4 corners of the boards. When the board is 2500 wide, the size 150 text fits fine. But as soon as you decrease the size of the boards, it forces the text into a double line as shown on the picture and then it is off. Can I not make an ilogic rule with an if statement saying, if tblength = 2500 then textsize = 150, if tblength = 2000 then textsize = 120 etc etc?&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:28:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252289#M214868</guid>
      <dc:creator>icebot53</dc:creator>
      <dc:date>2018-09-07T10:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252309#M214869</link>
      <description>&lt;P&gt;I think part of the problem is that you're using the standard "Text" tool. If you create a sketch line you can use "Geometry Text" to apply text onto lines and then constrain the line in place.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you want the text to always be in the middle of the board?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also what you've suggested&amp;nbsp;at the end is exactly what i was thinking. If you give me all the tblength and textsize's i will try and create the code to do so!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 100%;"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Lewis Young&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Tahoma" size="1" color="#9933ff"&gt;Windows 7 x64 - 32GB Ram&lt;BR /&gt;Intel Xeon E5-1620 v2 @ 3.70GHz&lt;BR /&gt;nVidia Quadro M2000 - 4GB&lt;BR /&gt;Inventor Professional 2017.3&lt;BR /&gt;Vault Basic 2017&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:41:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252309#M214869</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-07T10:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252335#M214870</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/543617i3C24943A2CBB552D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:54:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252335#M214870</guid>
      <dc:creator>icebot53</dc:creator>
      <dc:date>2018-09-07T10:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252340#M214871</link>
      <description>&lt;P&gt;And yes, I want the text to always be in the centre of the board.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:55:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252340#M214871</guid>
      <dc:creator>icebot53</dc:creator>
      <dc:date>2018-09-07T10:55:11Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252346#M214872</link>
      <description>&lt;P&gt;Okay great, do you have the corresponding text sizes to go with the tblengths?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 100%;"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Lewis Young&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Tahoma" size="1" color="#9933ff"&gt;Windows 7 x64 - 32GB Ram&lt;BR /&gt;Intel Xeon E5-1620 v2 @ 3.70GHz&lt;BR /&gt;nVidia Quadro M2000 - 4GB&lt;BR /&gt;Inventor Professional 2017.3&lt;BR /&gt;Vault Basic 2017&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 10:57:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252346#M214872</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-07T10:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252404#M214873</link>
      <description>&lt;P&gt;Sorry i've just realised something! if your intention is to make an iPart for the toe board, then iLogic rules won't run correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is because the iParts embedded table drives the parameters for each factory member, not the rule.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll have another think and see if i can think of an alternative to doing it manually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 100%;"&gt;&lt;STRONG&gt;&lt;FONT size="3"&gt;Lewis Young&lt;BR /&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Tahoma" size="1" color="#9933ff"&gt;Windows 7 x64 - 32GB Ram&lt;BR /&gt;Intel Xeon E5-1620 v2 @ 3.70GHz&lt;BR /&gt;nVidia Quadro M2000 - 4GB&lt;BR /&gt;Inventor Professional 2017.3&lt;BR /&gt;Vault Basic 2017&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Sep 2018 11:31:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8252404#M214873</guid>
      <dc:creator>Lewis.Young</dc:creator>
      <dc:date>2018-09-07T11:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8903096#M214874</link>
      <description>&lt;P&gt;Hi, the code you've given would work perfectly for me, except that I have Text Parameters in my sketch text. Is there any chance you could advise how to re-write it so that the parameters are used? As it is, it uses the values of the parameters at the time the rule is run, but then they're lost. Many thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 08:43:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/8903096#M214874</guid>
      <dc:creator>sjxyz</dc:creator>
      <dc:date>2019-07-11T08:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/9361702#M214875</link>
      <description>&lt;P&gt;Hi Lewis,&lt;/P&gt;&lt;P&gt;It was very helpful, Thank you so much&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2020 21:48:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/9361702#M214875</guid>
      <dc:creator>sandeepMBMV3</dc:creator>
      <dc:date>2020-03-05T21:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Having text size based on another parameter</title>
      <link>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/12424401#M214876</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I was using a version of this code and it works great, however I have run into one snag.&lt;/P&gt;&lt;P&gt;I want the font to be "Stencil", however run the code it defaults back to "Tahoma".&lt;/P&gt;&lt;P&gt;Are you able to add a line of code that allows me to change font style?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2023 21:23:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/inventor-forum/having-text-size-based-on-another-parameter/m-p/12424401#M214876</guid>
      <dc:creator>cliff.kelly</dc:creator>
      <dc:date>2023-12-06T21:23:00Z</dc:date>
    </item>
  </channel>
</rss>

