<?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: Bug: Setting SketchText properties resets text height since v. 2.0.10244 in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10364685#M8728</link>
    <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3787950"&gt;@kandennti&lt;/a&gt;&amp;nbsp; , you are the master of TextCommands.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I believe the TextCommands in themselves being a performance hit (haven't measured though) and the select+unselect procedure is not acceptable for my add-in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried digging for the entityId using the regular API, but I did not find a match (entityId is a number while entityToken is something base64-encoded).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I first thought that the entityToken for the parameter and the SketchText was the same (what!), but it turns out that all objects' entity tokens look very similar - but differ at the end.. (Also, I know that entityTokens are unstable and should no be compared)&lt;/P&gt;&lt;LI-CODE lang="python"&gt;d1=design.allParameters.itemByName('d1')
d1.entityToken 
/v4BAAAARlJLZXkAH4sIAAAAAAAA/zNQsFAwAEJDBSMgBrOMLIAsQwUTkIiZwso3N0+lfHK9s/Dbq9z9J/eUA1UYKRibKSQmGlkapaZY6lpYpFnqmqQapuhaGBul6BqYp6WZmZgCpc2TwWqBZjCgAbB9Bgpg60DWG1maAACiqmK+iAAAAA==

sketch_text.entityToken 
/v4BAAAARlJLZXkAH4sIAAAAAAAA/zNQsFAwAEJDBSMgBrOMLIAsQwUTkIiZwso3N0+lfHK9s/Dbq9z9J/eUA1UYKRibKSQmGlkapaZY6lpYpFnqmqQapuhaGBul6BqYp6WZmZgCpc2TwWqBZjCgAbB9Bgpg60DWG1kYAAD6XxSgiAAAAA==

d1.entityToken==sketch_text.entityToken
False # :(



#not close enough - need the SketchText object:
d1.createdBy 
'
&amp;lt;adsk.fusion.Sketch; proxy of &amp;lt;Swig Object of type 'std::vector&amp;lt; adsk::core::Ptr&amp;lt; adsk::fusion::Sketch &amp;gt; &amp;gt;::value_type *&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 04 Jun 2021 18:13:44 GMT</pubDate>
    <dc:creator>thomasa88</dc:creator>
    <dc:date>2021-06-04T18:13:44Z</dc:date>
    <item>
      <title>Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10356396#M8725</link>
      <description>&lt;P&gt;Fusion 360 v. 2.0.10244 breaks the sketch text API. Changing the any property of a SketchText results in the &lt;EM&gt;height&lt;/EM&gt; of the text being reset to 1.0 (cm).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This means that the workaround of getting the height first, setting properties, and the restoring the height, does not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the GUI, create a new document. Create a sketch with a sketch text. Set the sketch text height to 20 mm.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the Python console (Ctrl+Alt+C -&amp;gt; py), execute the following lines:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;app = adsk.core.Application.get() 
t = app.activeProduct.rootComponent.sketches[0].sketchTexts[0]  

t.height 
3.0

t.text="new" 

t.height 
1.0

t.height=3.0

t.height 
1.0&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This breaks my ParametricText add-in \o/. Issue: &lt;A href="https://github.com/thomasa88/ParametricText/issues/21" target="_blank"&gt;https://github.com/thomasa88/ParametricText/issues/21&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think you broke something similar with text spacing in December 2020. &lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/cannot-select-shx-fonts-on-sketchtext-object/m-p/9923259/highlight/true#M12082" target="_blank"&gt;https://forums.autodesk.com/t5/fusion-360-api-and-scripts/cannot-select-shx-fonts-on-sketchtext-object/m-p/9923259/highlight/true#M12082&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 19:42:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10356396#M8725</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2021-06-01T19:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10357240#M8726</link>
      <description>&lt;P&gt;A possible workaround could be to set the parameter that is now associated with the text height.&lt;/P&gt;&lt;P&gt;However, if it can't be looked up by parameter name, we will have to do a search through all parameters, which I think will lead to a performance hit. Also, I cannot find any property in ModelParameter that has a matching property in SketchText (my first guess was &lt;EM&gt;role &lt;/EM&gt;(&lt;EM&gt;Text1-Height&lt;/EM&gt;), but we cannot know what text is &lt;EM&gt;Text1&lt;/EM&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;d = app.activeProduct

p=d.allParameters.itemByName('d1') 

p.value 
1.0
p.value=3.0 

p.name 
d1

p.component 
&amp;lt;adsk.fusion.Component; proxy of &amp;lt;Swig Object of type 'adsk::core::Ptr&amp;lt; adsk::fusion::Component &amp;gt; *' at 0x0000024506A9BDE0&amp;gt; &amp;gt;

p.role 
Text1-Height

t.height 
3.0&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Jun 2021 05:03:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10357240#M8726</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2021-06-02T05:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10357593#M8727</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found a way to access the Sketch Text Height Parameter.&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;# Fusion360API Python script
import adsk.core, adsk.fusion, traceback
import json

def run(context):
    ui = adsk.core.UserInterface.cast(None)
    try:
        app :adsk.fusion.Application = adsk.core.Application.get()
        ui = app.userInterface
        des :adsk.fusion.Design = app.activeProduct
        root :adsk.fusion.Component = des.rootComponent

        skt :adsk.fusion.Sketch = root.sketches[0]
        txt = skt.sketchTexts[0]

        # get Height Parameter
        prm = getTextHeightParameter(txt)

        # resize
        prm.value = 2

    except:
        if ui:
            ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))


def getTextHeightParameter(
    txt :adsk.fusion.SketchText
    ) -&amp;gt; adsk.fusion.ModelParameter:

    def getProp(id :int) -&amp;gt; dict:
        return json.loads(app.executeTextCommand(u'PEntity.Properties {}'.format(id)))

    app :adsk.fusion.Application = adsk.core.Application.get()
    ui = app.userInterface
    sels :adsk.core.Selections = ui.activeSelections

    sels.clear()
    sels.add(txt)

    # get ID
    txtId = int(app.executeTextCommand(u'Selections.List').split(':')[-1])
    sels.clear()

    # get parameter Name
    textExProp = getProp(txtId)
    dcDoubleParameterProp = getProp(textExProp['textInfo']['heightDCParam']['entityId'])
    parameterProp = getProp(dcDoubleParameterProp['parameter']['entityId'])
    prmName = parameterProp['userName']

    # get sketch text Height Parameter
    prms :adsk.fusion.ParameterList = txt.parentSketch.parentComponent.parentDesign.allParameters
    return prms.itemByName(prmName)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is faster than this method.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/sketchtexts-createinput2-method-height-parameter-not-applied/m-p/10355645#M13433" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/fusion-360-api-and-scripts/sketchtexts-createinput2-method-height-parameter-not-applied/m-p/10355645#M13433&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 07:59:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10357593#M8727</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2021-06-02T07:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10364685#M8728</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3787950"&gt;@kandennti&lt;/a&gt;&amp;nbsp; , you are the master of TextCommands.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I believe the TextCommands in themselves being a performance hit (haven't measured though) and the select+unselect procedure is not acceptable for my add-in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried digging for the entityId using the regular API, but I did not find a match (entityId is a number while entityToken is something base64-encoded).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I first thought that the entityToken for the parameter and the SketchText was the same (what!), but it turns out that all objects' entity tokens look very similar - but differ at the end.. (Also, I know that entityTokens are unstable and should no be compared)&lt;/P&gt;&lt;LI-CODE lang="python"&gt;d1=design.allParameters.itemByName('d1')
d1.entityToken 
/v4BAAAARlJLZXkAH4sIAAAAAAAA/zNQsFAwAEJDBSMgBrOMLIAsQwUTkIiZwso3N0+lfHK9s/Dbq9z9J/eUA1UYKRibKSQmGlkapaZY6lpYpFnqmqQapuhaGBul6BqYp6WZmZgCpc2TwWqBZjCgAbB9Bgpg60DWG1maAACiqmK+iAAAAA==

sketch_text.entityToken 
/v4BAAAARlJLZXkAH4sIAAAAAAAA/zNQsFAwAEJDBSMgBrOMLIAsQwUTkIiZwso3N0+lfHK9s/Dbq9z9J/eUA1UYKRibKSQmGlkapaZY6lpYpFnqmqQapuhaGBul6BqYp6WZmZgCpc2TwWqBZjCgAbB9Bgpg60DWG1kYAAD6XxSgiAAAAA==

d1.entityToken==sketch_text.entityToken
False # :(



#not close enough - need the SketchText object:
d1.createdBy 
'
&amp;lt;adsk.fusion.Sketch; proxy of &amp;lt;Swig Object of type 'std::vector&amp;lt; adsk::core::Ptr&amp;lt; adsk::fusion::Sketch &amp;gt; &amp;gt;::value_type *&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2021 18:13:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10364685#M8728</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2021-06-04T18:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10367045#M8729</link>
      <description>&lt;P&gt;Unfortunately, I have not found a way to get the entityId without using selection.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;As for entityTokens, we users will still not be able to understand them in the future.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The most desirable thing would be for the bug to be fixed.&lt;/P&gt;</description>
      <pubDate>Sun, 06 Jun 2021 02:08:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10367045#M8729</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2021-06-06T02:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10370953#M8730</link>
      <description>&lt;P&gt;Latest idea!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1. Save all .value from sketch_text.parentSketch.parentComponent.modelParameters.&lt;BR /&gt;2. Change the sketch.&lt;BR /&gt;3. Loop modelParameters again. If a value does not match the original value, restore it.&lt;BR /&gt;4. Tada!...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems to work, but I was hoping to be able to detect if the bug was in effect so that I could turn off this potentially heavy workaround if the bug was not there.&lt;/P&gt;&lt;P&gt;I thought that I could let my workaround only apply if SketchText.height != 1.0 and then if the correction did not have to correct any values --&amp;gt; disable the workaround.&lt;/P&gt;&lt;P&gt;However, SketchText.height value seems to be trash, so I can only tell if I needed to do a fix by correcting the value (keep the workaround on), but not if a fix is no longer needed, as I cannot see if the user used a text with a height that is affected by the bug (i.e. the user has a text with height = 1.0 cm). &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that it is a double, but come on.. (height is set to 20mm in the GUI):&lt;/P&gt;&lt;P&gt;sketch_text.height&lt;BR /&gt;0.9999999999999996&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jun 2021 19:16:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10370953#M8730</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2021-06-07T19:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10372006#M8731</link>
      <description>&lt;P&gt;Edit:&lt;/P&gt;&lt;P&gt;To check: What happens if a user has assigned an expression? Will we overwrite it? Will the expression itself "protect" the height? (Likely, it will just be reset)&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 05:53:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10372006#M8731</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2021-06-08T05:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10372438#M8732</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hi Mr ThomasA88,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;STRONG&gt;You seem to be &lt;U&gt;quite desperate&lt;/U&gt; with the issue.&lt;span class="lia-unicode-emoji" title=":downcast_face_with_sweat:"&gt;😓&lt;/span&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;STRONG&gt;Well,... I do understand.&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I have been shaken by &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;textObject&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt; development in &lt;EM&gt;&lt;STRONG&gt;F360&lt;/STRONG&gt;&lt;/EM&gt; quite a few times. So if you are interested, it is not difficult to find out &lt;FONT color="#008000"&gt;&lt;EM&gt;&lt;STRONG&gt;why&amp;amp;where&amp;amp;how&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;.&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In your current case (under the condition that &lt;FONT color="#0000FF"&gt;&lt;EM&gt;&lt;STRONG&gt;textOnPath&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt; is not on your agenda), find an old file (~&amp;gt; one year old) with &lt;FONT color="#0000FF"&gt;&lt;EM&gt;&lt;STRONG&gt;textObject&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt; in it and run your &lt;FONT color="#800080"&gt;&lt;EM&gt;&lt;STRONG&gt;height changing script&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt; on it. &lt;FONT color="#FF6600"&gt;&lt;EM&gt;&lt;STRONG&gt;There is a good chance that it will work&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;MichaelT&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 09:02:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10372438#M8732</guid>
      <dc:creator>MichaelT_123</dc:creator>
      <dc:date>2021-06-08T09:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10373942#M8733</link>
      <description>&lt;P&gt;Hi MichaelT, I need my add-in to work for every condition, as &lt;A href="https://github.com/thomasa88/ParametricText/blob/master/README.md" target="_self"&gt;ParametricText&lt;/A&gt; is a general add-in, so using an old document is unfortunately a viable solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For anyone that's interested, my current workaround is done in two steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Check if Fusion 360 is affected by the bug&lt;OL&gt;&lt;LI&gt;Store parent component model parameters' expressions&lt;/LI&gt;&lt;LI&gt;Change text height of sketch to a value not close to 1.0&lt;/LI&gt;&lt;LI&gt;Read back the value. Is it close to 1.0 (Fusion sometimes sets it to 0.99999996), then the bug is present.&lt;/LI&gt;&lt;LI&gt;Loop through the model parameters and restore the one that was changed&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;If the bug is present:&lt;OL&gt;&lt;LI&gt;Store parent component model parameters' expressions&lt;/LI&gt;&lt;LI&gt;Change the sketch text&lt;/LI&gt;&lt;LI&gt;Loop through the model parameters and restore the one that was changed&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EDIT: And I don't want anyone to mark this as the solution of this issue, as it is only a workaround!&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 18:31:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/10373942#M8733</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2021-06-08T18:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/11605753#M8734</link>
      <description>&lt;P&gt;ParametricText users are now reporting problems with the workaround for the bug. &lt;A href="https://github.com/thomasa88/ParametricText/issues/46" target="_blank"&gt;https://github.com/thomasa88/ParametricText/issues/46&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A quick test with the code in the original post in this forum thread indicates that the bug might now be gone. Can anyone else confirm?&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 05:31:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/11605753#M8734</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2022-12-08T05:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Bug: Setting SketchText properties resets text height since v. 2.0.10244</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/11607254#M8735</link>
      <description>&lt;P&gt;I tested the code in the first post in this thread, and it changes the text without changing the size. The size remains constant.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Dec 2022 17:28:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/bug-setting-sketchtext-properties-resets-text-height-since-v-2-0/m-p/11607254#M8735</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2022-12-08T17:28:14Z</dc:date>
    </item>
  </channel>
</rss>

