<?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: How to Set the Parameter value for Python Custom Script ? in Fusion Educators (Read-Only)</title>
    <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12161199#M893</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3793923"&gt;@theshoaib.mughal&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I think you should make a new post regarding your concern. This thread is for python scripting, and it is also marked as solved, but I'll answer it anyways.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you changed were only the parameters of the 3d model, if you want to change the size you have to do it in the spec editor, else it won't work. If you want a 400x100 then register it, you can't change nominal sizes of components in the properties.&lt;/P&gt;</description>
    <pubDate>Thu, 10 Aug 2023 02:49:42 GMT</pubDate>
    <dc:creator>jflorita</dc:creator>
    <dc:date>2023-08-10T02:49:42Z</dc:date>
    <item>
      <title>How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10115102#M874</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Hi, Experts&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;Following is a part of my Sample Python Script&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;from aqa.math import *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;from varmain.primitiv import *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;from varmain.var_basic import *&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;from varmain.custom import *&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;# Write Metadata Section&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/179199" target="_blank"&gt;@activate&lt;/A&gt;(Group="Support", TooltipShort="SAMPLESUPPORT", TooltipLong="SAMPLESUPPORT", LengthUnit="mm", Ports=1)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&lt;A href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8108781" target="_blank"&gt;@group&lt;/A&gt;("MainDimensions")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;@param(D=LENGTH, TooltipLong="Pipe Diameter")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;@param(SL=LENGTH, TooltipLong="Plate Length")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;@param(SW=LENGTH, TooltipLong="Plate Width")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;@param(SH=LENGTH, TooltipLong="Plate Height")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;@param(VOL=LENGTH, TooltipLong="Plate Volume")&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;def SAMPLESUPPORT(s, D = 100, SL = 1000.0, SW = 2000.0, SH = 3000.0, VOL = 0.0, ID = 'SAMPLESUPPORT', **kw):&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&amp;nbsp; &amp;nbsp; box = BOX(s, L=SL, W=SW, H=SH)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2"&gt;&amp;nbsp; &amp;nbsp; VOL = SL * SW * SH&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=============================&lt;/P&gt;&lt;P&gt;VOL is a parameter which I want to set the volume of box after I create the box and I expect the VOL parameter to be changed according to the variable value of Width, Height, Length of the box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;(&lt;FONT face="arial,helvetica,sans-serif"&gt;VOL = SL * SW * SH) is not effective because VOL always stays same as zero(0)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="3"&gt;Thank You.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 17:56:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10115102#M874</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-26T17:56:41Z</dc:date>
    </item>
    <item>
      <title>Betreff: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10115717#M875</link>
      <description>&lt;P&gt;I only have one question:&lt;BR /&gt;Where did you get the information from custom Python scripts for the construction of Autodesk AutoCAD Plant 3D objects?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 22:15:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10115717#M875</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2021-02-26T22:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10120599#M876</link>
      <description>&lt;P&gt;There isn't a documented function that will accomplish this. The parameter values do not update based on what happens in the body of the script* - they only read what is defined in the params line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*The setLinearDimension function does update the parameter values but it feeds them back into the params line.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 14:00:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10120599#M876</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2021-03-01T14:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10120751#M877</link>
      <description>&lt;P&gt;Thank You, Jabowabo&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 14:54:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/10120751#M877</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-01T14:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11099319#M878</link>
      <description>&lt;P&gt;Hi GUYS, HOW ARE YOU ALL&lt;/P&gt;&lt;P&gt;I don't know if this is the right thread to ask this, but we have an inline instrument whose flange face to face distance is variable. I would like to insert this item in the instrumentation spec and let the user define this distance in the properties of the component. Is that a way to do that other than the custom part?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 11 Apr 2022 21:08:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11099319#M878</guid>
      <dc:creator>mikael.santospj</dc:creator>
      <dc:date>2022-04-11T21:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11099337#M879</link>
      <description>&lt;P&gt;Dear &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11434682"&gt;@mikael.santospj&lt;/a&gt; ,&lt;/P&gt;
&lt;H2&gt;&lt;FONT size="3"&gt;With it your wishes come true&lt;/FONT&gt;&lt;/H2&gt;
&lt;H2&gt;&lt;A href="https://in-the-pipes.typepad.com/in_the_pipes/2017/12/index.html" target="_blank" rel="noopener"&gt;&lt;FONT size="3"&gt;# 2 - "Parametric" Component Designation&lt;/FONT&gt;&lt;/A&gt;&lt;/H2&gt;</description>
      <pubDate>Mon, 11 Apr 2022 21:24:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11099337#M879</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2022-04-11T21:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11100723#M880</link>
      <description>&lt;P&gt;Thanks, you are absolutelly right, that's it.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 12:15:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11100723#M880</guid>
      <dc:creator>mikael.santospj</dc:creator>
      <dc:date>2022-04-12T12:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11100806#M881</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mikaelsantospj_0-1649767474133.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1053892i14EEBADD9506D0B1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mikaelsantospj_0-1649767474133.png" alt="mikaelsantospj_0-1649767474133.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Only to show, we do need this customization for PSV's and control valves in the instrumentation spec, for example.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 12 Apr 2022 12:47:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11100806#M881</guid>
      <dc:creator>mikael.santospj</dc:creator>
      <dc:date>2022-04-12T12:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11900800#M882</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I would like to share that I have developed a customized support system using Python script. However, there is a certain parameter that is optional, and I intend to have it hidden if the value of the parameter is zero. Unfortunately, it appears that I am unable to input zero as a value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 06:43:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11900800#M882</guid>
      <dc:creator>jflorita</dc:creator>
      <dc:date>2023-04-17T06:43:46Z</dc:date>
    </item>
    <item>
      <title>Betreff: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11900813#M883</link>
      <description>&lt;P&gt;Dear &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13277709"&gt;@jflorita&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know any way to do this.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 06:52:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11900813#M883</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2023-04-17T06:52:27Z</dc:date>
    </item>
    <item>
      <title>Betreff: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11900818#M884</link>
      <description>&lt;P&gt;Thank you for your response&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593421"&gt;@h_eger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 06:55:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/11900818#M884</guid>
      <dc:creator>jflorita</dc:creator>
      <dc:date>2023-04-17T06:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053448#M885</link>
      <description>&lt;P&gt;I hope I am in the right forum. Could anyone guide me if it's possible to change the component family description on-the-go?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me explain the need. I have &amp;nbsp;coded the cable tray script that allows from switching between solid bottom, perforated bottom and ladder type after they are placed in the plant3d. I have defined a parameter that listens to these changes. And it works fine. Although for my BoM and isometric I like to change the component description as well with these changes so that the BoM represents the part that is currently placed in the model. Trouble is that this information is stored in the metadata whereas the changes to shape happen in the body of the code. Is there a way to access the metadata and change it from the body of the code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;e.g.&lt;/P&gt;&lt;P&gt;Shape =0 means solid&lt;/P&gt;&lt;P&gt;Shape =1 means perforated&lt;/P&gt;&lt;P&gt;Shape =2 means ladder&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So if i choose either value, the IF loop in the code executr relevant portion only and i get the desired result. I wonder if I could insert a code line for changing the component description in these IF loops.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts??&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 15:38:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053448#M885</guid>
      <dc:creator>theshoaib.mughal</dc:creator>
      <dc:date>2023-06-22T15:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053472#M886</link>
      <description>&lt;P&gt;One more thing. Is there a way to make a copy of an object. I hate to code same components over and over. If i could make a copy and move it with translate command then it will be a treasure&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 15:40:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053472#M886</guid>
      <dc:creator>theshoaib.mughal</dc:creator>
      <dc:date>2023-06-22T15:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053545#M887</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3793923"&gt;@theshoaib.mughal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I hope I am in the right forum. Could anyone guide me if it's possible to change the component family description on-the-go?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me explain the need. I have &amp;nbsp;coded the cable tray script that allows from switching between solid bottom, perforated bottom and ladder type after they are placed in the plant3d. I have defined a parameter that listens to these changes. And it works fine. Although for my BoM and isometric I like to change the component description as well with these changes so that the BoM represents the part that is currently placed in the model. Trouble is that this information is stored in the metadata whereas the changes to shape happen in the body of the code. Is there a way to access the metadata and change it from the body of the code.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;e.g.&lt;/P&gt;
&lt;P&gt;Shape =0 means solid&lt;/P&gt;
&lt;P&gt;Shape =1 means perforated&lt;/P&gt;
&lt;P&gt;Shape =2 means ladder&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So if i choose either value, the IF loop in the code executr relevant portion only and i get the desired result. I wonder if I could insert a code line for changing the component description in these IF loops.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any thoughts??&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;There is no link between the two. You would need 3 different spec items with different descriptions if you don't want to modify them in the model.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This can only be automated via the .NET API. Related info:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/autocad-plant-3d-p-id-ideas/where-we-can-get-dimensions-of-python-scripts-component/idc-p/11901623#M2713" target="_blank"&gt;https://forums.autodesk.com/t5/autocad-plant-3d-p-id-ideas/where-we-can-get-dimensions-of-python-scripts-component/idc-p/11901623#M2713&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 15:55:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053545#M887</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2023-06-22T15:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053558#M888</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3793923"&gt;@theshoaib.mughal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;One more thing. Is there a way to make a copy of an object. I hate to code same components over and over. If i could make a copy and move it with translate command then it will be a treasure&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't think it's possible to copy items. You can import items from other scripts multiple times though:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/autocad-plant-3d-forum/custom-python-supports-calling-other-custom-scripts/td-p/10643192" target="_blank"&gt;https://forums.autodesk.com/t5/autocad-plant-3d-forum/custom-python-supports-calling-other-custom-scripts/td-p/10643192&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 15:57:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053558#M888</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2023-06-22T15:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053608#M889</link>
      <description>&lt;P&gt;3 specs is kinda long way around although it gets the job done but the other option seems promising. I will give that a try and see what happens.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 16:15:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053608#M889</guid>
      <dc:creator>theshoaib.mughal</dc:creator>
      <dc:date>2023-06-22T16:15:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053614#M890</link>
      <description>Hmm. Thats a thought. Not suitable for my current problem as i want copying the object created in same script. But its gonna be useful in other because most of the begining blocks for creating shapes are usually simple and same. It can help me there. Thanks &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Thu, 22 Jun 2023 16:17:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053614#M890</guid>
      <dc:creator>theshoaib.mughal</dc:creator>
      <dc:date>2023-06-22T16:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053649#M891</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3793923"&gt;@theshoaib.mughal&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;3 specs is kinda long way around although it gets the job done but the other option seems promising. I will give that a try and see what happens.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Three items, based on the same script with appropriate shape values and descriptions, in one spec.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jun 2023 16:29:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12053649#M891</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2023-06-22T16:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12085699#M892</link>
      <description>&lt;P&gt;Hello guys. One quick question. I have to work with reducers. I added 'custom' in the specs editor so I can the parameter in the drawing. Now this has caused a trouble. The component size in the catalog and specs was 300x100 (in mm) so port 1 was 300 and port 2 was 100. If I place it as is then its all good. But if i change size of either port say e.g. make it 400x100 the two things happen;&lt;/P&gt;&lt;P&gt;1. Since the '+' sign adds a corresponding pipe to the port; it doesn't add a corresponding 400 size pipe instead it adds a 300 size pipe which is default size of the component. I want it to add a 400 size pipe&lt;/P&gt;&lt;P&gt;2. The description of reducer in isometric is still 300x100 even if I manually add a 400 size pipe. How can I change the description of port size to 400x100 in this case?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know there maybe a reducer defined for 400x100 size but what if there is a size that isnt defined then what??&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2023 08:22:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12085699#M892</guid>
      <dc:creator>theshoaib.mughal</dc:creator>
      <dc:date>2023-07-07T08:22:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to Set the Parameter value for Python Custom Script ?</title>
      <link>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12161199#M893</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3793923"&gt;@theshoaib.mughal&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I think you should make a new post regarding your concern. This thread is for python scripting, and it is also marked as solved, but I'll answer it anyways.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you changed were only the parameters of the 3d model, if you want to change the size you have to do it in the spec editor, else it won't work. If you want a 400x100 then register it, you can't change nominal sizes of components in the properties.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 02:49:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-educators-read-only/how-to-set-the-parameter-value-for-python-custom-script/m-p/12161199#M893</guid>
      <dc:creator>jflorita</dc:creator>
      <dc:date>2023-08-10T02:49:42Z</dc:date>
    </item>
  </channel>
</rss>

