<?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 Door &amp;amp; Window Marker in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2932#M42372</link>
    <description>I have just finished a macro with window info for our company. Now how do I get an existing window marker to read my custom parameters from the macro.</description>
    <pubDate>Mon, 08 Dec 2003 20:16:08 GMT</pubDate>
    <dc:creator>Red</dc:creator>
    <dc:date>2003-12-08T20:16:08Z</dc:date>
    <item>
      <title>Reading out non standard door/window parameters by marker ?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2926#M42366</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hi,&lt;BR /&gt;
&lt;BR /&gt;
I am trying to modify a window/door marker to read out additional parameters and show them in the marker.&lt;BR /&gt;
eg. Fire rating or Acustic rating.&lt;BR /&gt;
Is there such possibility?&lt;BR /&gt;
&lt;BR /&gt;
Am i on the right path trying to use:&lt;BR /&gt;
REQUEST ("ASSOCLP_PARVALUE",[..]) command&lt;BR /&gt;
&lt;BR /&gt;
but I am trying it with no luck yet...&lt;BR /&gt;
Anyone tried that?&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Piotr Dobrowolski&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 10:51:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2926#M42366</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2023-05-24T10:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reading out non standard door/window parameters by marke</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2927#M42367</link>
      <description>From what I've read in your post REQUEST ("ASSOCLP_PARVALUE",[..]) will work for what you are trying to do.&lt;BR /&gt;
&lt;BR /&gt;
The trick is to have each parameter listed and accounted for in both the Door/Window Object and the Marker Object. This allows you to pull the parameter value from the Door/Window and repeat the value in the Marker. And be sure to keep the parameter format identical in both Objects.&lt;BR /&gt;
&lt;BR /&gt;
You could also use the "GLOB_USER_#" to pass the value between objects.</description>
      <pubDate>Thu, 20 Nov 2003 18:10:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2927#M42367</guid>
      <dc:creator>David Larrew</dc:creator>
      <dc:date>2003-11-20T18:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reading out non standard door/window parameters by marke</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2928#M42368</link>
      <description>The command is tricky itself...&lt;BR /&gt;
I tried to use it, but it did not read the parameter - I probably did something wrong ...&lt;BR /&gt;
&lt;BR /&gt;
In GDL manual there is no example on this command...and the explanation is a bit weired &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/E&gt;)&lt;BR /&gt;
As weired as the explanation on "moving" hotspots - I figured it out by the examples only ...&lt;BR /&gt;
&lt;BR /&gt;
So. You probably did some research on the command (I saw Your post on gdl-talk sometime ago) so maybe You would share an example with architalk  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;)&lt;BR /&gt;
&lt;BR /&gt;
Regards&lt;BR /&gt;
Piotr</description>
      <pubDate>Fri, 21 Nov 2003 01:34:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2928#M42368</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2003-11-21T01:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Reading out non standard door/window parameters by marke</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2929#M42369</link>
      <description>Ok - there is a bug in GDL manual &lt;BR /&gt;
"REQUEST ("ASSOCLP_PARVALUE", expr, name_or_index,type, flags, dim1, dim2, values)"&lt;BR /&gt;
&lt;BR /&gt;
- noone  noticed that  expr - which is for parameters name should be written in quotation marks "expr".&lt;BR /&gt;
I have found the working example in "object marker" or "object label"  so I am rewriting the "WD marker" object to read out the fire and acoustic rating - the key was:&lt;BR /&gt;
&lt;BR /&gt;
re_fire=REQUEST ("ASSOCLP_PARVALUE", "gs_list_firerating", nameind_fr, type_fr, flag_fr, dim1_fr, dim2_fr, val_fr)&lt;BR /&gt;
re_acou=REQUEST ("ASSOCLP_PARVALUE", "gs_list_acousticrating", nameind_ar, type_ar, flag_ar, dim1_ar, dim2_ar, val_ar)&lt;BR /&gt;
&lt;BR /&gt;
val_fr is the value of the parameter "gs_list_firerating" in asociated door / window&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Piotr Dobrowolski</description>
      <pubDate>Tue, 02 Dec 2003 18:42:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2929#M42369</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2003-12-02T18:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reading out non standard door/window parameters by marke</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2930#M42370</link>
      <description>You are correct. I didn't notice the GDL Manual typo because when I started using this REQUEST() command I used quotes for the object name out of habit - from using other REQUEST() commands in the past.&lt;BR /&gt;
&lt;BR /&gt;
Is it working for you?</description>
      <pubDate>Tue, 02 Dec 2003 22:14:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2930#M42370</guid>
      <dc:creator>David Larrew</dc:creator>
      <dc:date>2003-12-02T22:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reading out non standard door/window parameters by marke</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2931#M42371</link>
      <description>Yes it does work, since I've  found out what is wrong with it and why it returns with "0"&lt;BR /&gt;
I did not use REQUEST comand much before.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Piotr</description>
      <pubDate>Wed, 03 Dec 2003 05:36:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2931#M42371</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2003-12-03T05:36:13Z</dc:date>
    </item>
    <item>
      <title>Door &amp; Window Marker</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2932#M42372</link>
      <description>I have just finished a macro with window info for our company. Now how do I get an existing window marker to read my custom parameters from the macro.</description>
      <pubDate>Mon, 08 Dec 2003 20:16:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2932#M42372</guid>
      <dc:creator>Red</dc:creator>
      <dc:date>2003-12-08T20:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Door &amp; Window Marker</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2933#M42373</link>
      <description>follow this:&lt;BR /&gt;
&lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?t=648" target="_blank"&gt;http://archicad-talk.graphisoft.com/viewtopic.php?t=648&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
remember about quoting the parameter to read the value (bug in GDL manual)&lt;BR /&gt;
&lt;BR /&gt;
I have remodeled the marker to read nominal door sizes and fire &amp;amp; acoustic rating.&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Piotr Dobrowolski</description>
      <pubDate>Tue, 09 Dec 2003 06:34:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2933#M42373</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2003-12-09T06:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reading out non standard door/window parameters by marker ?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2934#M42374</link>
      <description>Hi,&lt;BR /&gt;
I have a problem with WD - marker_22. It doesn't read values out of "gs_list_firerating", "gs_list_acousticrating", "gs_list_heattransfer" or "gs_list_location". I am working on Archicad22_POL, INT has also the same problem. What is this about? Did you have the same problem? &lt;BR /&gt;
Best regards,&lt;BR /&gt;
Rafał.</description>
      <pubDate>Wed, 05 Sep 2018 10:18:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2934#M42374</guid>
      <dc:creator>rav668</dc:creator>
      <dc:date>2018-09-05T10:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reading out non standard door/window parameters by marker ?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2935#M42375</link>
      <description>You are writing Your own marker?  what it wrong with the default one?&lt;BR /&gt;
(those values read ok in the default marker)&lt;BR /&gt;
&lt;BR /&gt;
Piotr</description>
      <pubDate>Wed, 05 Sep 2018 15:53:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Reading-out-non-standard-door-window-parameters-by-marker/m-p/2935#M42375</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2018-09-05T15:53:49Z</dc:date>
    </item>
  </channel>
</rss>

