<?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: Window/Door Marker requests in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130606#M13059</link>
    <description>Hi Alister.&lt;BR /&gt;
I spent a little bit of time trying to do the same thing.&lt;BR /&gt;
&lt;BR /&gt;
GDL Reference Guide that comes with ArchiCAD will get you there eventually if you study the command Piort suggested.&lt;BR /&gt;
&lt;BR /&gt;
This is my code I put into the MASTER script of my door label to call out door leaf dimension ... this worked for me.&lt;BR /&gt;
&lt;BR /&gt;
leafwidth=0&lt;BR /&gt;
leaf_w = request ("ASSOCLP_PARVALUE", "ac_leaf_width",&lt;BR /&gt;
index_l, type_l, flags_l, dim1_l, dim2_l, leafwidth)&lt;BR /&gt;
&lt;BR /&gt;
leafheight=0&lt;BR /&gt;
leaf_w = request ("ASSOCLP_PARVALUE", "ac_leaf_height",&lt;BR /&gt;
index_l, type_l, flags_l, dim1_l, dim2_l, leafheight)&lt;BR /&gt;
&lt;BR /&gt;
Your code for U value would be something like this:&lt;BR /&gt;
uvalue=0&lt;BR /&gt;
abc = request ("ASSOCLP_PARVALUE", "gs_list_heattransfer",&lt;BR /&gt;
index_l, type_l, flags_l, dim1_l, dim2_l, uvalue)&lt;BR /&gt;
&lt;BR /&gt;
Test it with a simple code in 2d Script to see if it worked ... Make sure you test it in a project rather then GDL object box. Assign a value different to 0 to U-Value of your door/window. Hopefully the output doesn't return '0' ... and you know that it works.&lt;BR /&gt;
TEXT2 0,0,uvalue&lt;BR /&gt;
&lt;BR /&gt;
I haven't tested it myself but it should do the job.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.</description>
    <pubDate>Mon, 03 Feb 2014 01:57:20 GMT</pubDate>
    <dc:creator>jakubc7</dc:creator>
    <dc:date>2014-02-03T01:57:20Z</dc:date>
    <item>
      <title>Window/Door Marker requests</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130604#M13057</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hi Guys,&lt;BR /&gt;
&lt;BR /&gt;
I wonder if some one can help me.&lt;BR /&gt;
I would like to request Parameter information from a custom window or door and use it in the marker.&lt;BR /&gt;
&lt;BR /&gt;
Im really battling with the "request" functions.&lt;BR /&gt;
I'm also not sure if I even need to use the "request" function, is there another way?&lt;BR /&gt;
&lt;BR /&gt;
Eg: Lets say I have a parameter in the window/door called "Uvalue" and is't value is "3", how do I get that info to my marker so that I can use or display it?&lt;BR /&gt;
&lt;BR /&gt;
Thanks in advance for all your help.&lt;BR /&gt;
Regards.&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 10:33:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130604#M13057</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-24T10:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Window/Door Marker requests</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130605#M13058</link>
      <description>Study the Request asscopar_value in any DW marker like the fire rating called from D&amp;amp;W.&lt;BR /&gt;
&lt;BR /&gt;
Best Regards,&lt;BR /&gt;
Piotr</description>
      <pubDate>Fri, 31 Jan 2014 17:42:12 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130605#M13058</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2014-01-31T17:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Window/Door Marker requests</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130606#M13059</link>
      <description>Hi Alister.&lt;BR /&gt;
I spent a little bit of time trying to do the same thing.&lt;BR /&gt;
&lt;BR /&gt;
GDL Reference Guide that comes with ArchiCAD will get you there eventually if you study the command Piort suggested.&lt;BR /&gt;
&lt;BR /&gt;
This is my code I put into the MASTER script of my door label to call out door leaf dimension ... this worked for me.&lt;BR /&gt;
&lt;BR /&gt;
leafwidth=0&lt;BR /&gt;
leaf_w = request ("ASSOCLP_PARVALUE", "ac_leaf_width",&lt;BR /&gt;
index_l, type_l, flags_l, dim1_l, dim2_l, leafwidth)&lt;BR /&gt;
&lt;BR /&gt;
leafheight=0&lt;BR /&gt;
leaf_w = request ("ASSOCLP_PARVALUE", "ac_leaf_height",&lt;BR /&gt;
index_l, type_l, flags_l, dim1_l, dim2_l, leafheight)&lt;BR /&gt;
&lt;BR /&gt;
Your code for U value would be something like this:&lt;BR /&gt;
uvalue=0&lt;BR /&gt;
abc = request ("ASSOCLP_PARVALUE", "gs_list_heattransfer",&lt;BR /&gt;
index_l, type_l, flags_l, dim1_l, dim2_l, uvalue)&lt;BR /&gt;
&lt;BR /&gt;
Test it with a simple code in 2d Script to see if it worked ... Make sure you test it in a project rather then GDL object box. Assign a value different to 0 to U-Value of your door/window. Hopefully the output doesn't return '0' ... and you know that it works.&lt;BR /&gt;
TEXT2 0,0,uvalue&lt;BR /&gt;
&lt;BR /&gt;
I haven't tested it myself but it should do the job.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.</description>
      <pubDate>Mon, 03 Feb 2014 01:57:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130606#M13059</guid>
      <dc:creator>jakubc7</dc:creator>
      <dc:date>2014-02-03T01:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Window/Door Marker requests</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130607#M13060</link>
      <description>Great, thanks so much for your efforts guys, much appreciated!&lt;BR /&gt;
I will give this a bash.&lt;BR /&gt;
&lt;BR /&gt;
Regards,</description>
      <pubDate>Wed, 05 Feb 2014 07:03:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130607#M13060</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-05T07:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Window/Door Marker requests</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130608#M13061</link>
      <description>Hi Guys,&lt;BR /&gt;
&lt;BR /&gt;
I have finally figured this out but have now run into a new issue.&lt;BR /&gt;
I am able to request the info I need, but if the parameter does not exist in a window or door, then the UI disappears. Is there a parameter dependance command similar to the file dependance command?&lt;BR /&gt;
&lt;BR /&gt;
Kind regards,</description>
      <pubDate>Wed, 05 Feb 2014 23:02:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130608#M13061</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-05T23:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Window/Door Marker requests</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130609#M13062</link>
      <description>I may be completely wrong ... but maybe if you try forcing the parameter...&lt;BR /&gt;
&lt;BR /&gt;
ie.&lt;BR /&gt;
IF U-Value = 0 THEN&lt;BR /&gt;
U-value = 1&lt;BR /&gt;
ENDIF&lt;BR /&gt;
&lt;BR /&gt;
... my guess is that it probably won't work but may be worth a try.</description>
      <pubDate>Thu, 06 Feb 2014 05:21:27 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Window-Door-Marker-requests/m-p/130609#M13062</guid>
      <dc:creator>jakubc7</dc:creator>
      <dc:date>2014-02-06T05:21:27Z</dc:date>
    </item>
  </channel>
</rss>

