<?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: Zone Labels: read parameters from zones in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359534#M2209</link>
    <description>&lt;P&gt;BTW. Zone labels biggest drawback (resulting in "not using" in general) is inability to access the zone stamp parameters - GS devs please read &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 23 Oct 2022 05:31:28 GMT</pubDate>
    <dc:creator>Piotr Dobrowolski</dc:creator>
    <dc:date>2022-10-23T05:31:28Z</dc:date>
    <item>
      <title>Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359105#M2205</link>
      <description>&lt;P&gt;For zone labels the usually used command&lt;/P&gt;&lt;P&gt;REQUEST ("ASSOCLP_PARVALUE", "ROOM_NAME", ...&lt;/P&gt;&lt;P&gt;seems not to work.&lt;/P&gt;&lt;P&gt;What is the corresponding command for zone parameters?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 11:36:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359105#M2205</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2022-10-19T11:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359134#M2206</link>
      <description>&lt;P&gt;You might want to look at the "Built-in Property".&lt;BR /&gt;For the Indigo Figs Zone Label, I request "Property_Value_Of_Parent" with a "Built-in Property" using "&lt;SPAN class=""&gt;Builtin.Zone_ZoneName&lt;/SPAN&gt;" for "Zone Name".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 16:33:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359134#M2206</guid>
      <dc:creator>Palawat</dc:creator>
      <dc:date>2022-10-19T16:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359138#M2207</link>
      <description>&lt;P&gt;Thank You, Palawat.&lt;BR /&gt;This is very interesting. I checked your zone stamp from Indigo and in the stamp and MVO object I have seen that the whole parameters section from the zone stamp is there in the Property list.&lt;BR /&gt;Questions:&lt;BR /&gt;1. does the zone label uses these zone properties and not a direct request to the zone parameters?&lt;BR /&gt;2. How did you get those "zone parameters" in the Properties dropdown list?&lt;BR /&gt;Is there any example in the Archicad library that I didn't find?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Oct 2022 17:50:12 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359138#M2207</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2022-10-19T17:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359230#M2208</link>
      <description>&lt;P&gt;Glad I could help.&lt;/P&gt;&lt;P&gt;1. Yes, it does. Since all the ROOM_NAME, ROOM_NUMBER, ... are available only for zone stamp, so the zone label uses built-in zone properties.&lt;/P&gt;&lt;P&gt;2. Not sure if there's an example but I use &lt;SPAN&gt;UI_CUSTOM_POPUP_INFIELD which accepts array variables.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Master script:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;dim uiZoneParam[][]

uiZoneParam[1][1] = "Zone Name"
uiZoneParam[1][2] = "Catagory Name"
uiZoneParam[1][3] = ""
uiZoneParam[1][4] = "Zone Name"

uiZoneParam[2][1] = "Zone Number"
uiZoneParam[2][2] = "Catagory Name"
uiZoneParam[2][3] = ""
uiZoneParam[2][4] = "Zone Number"

...&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;UI script:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;dim parentProperties[]
n = REQUEST ("Properties_Of_Parent", "", parentProperties)
n = REQUEST("PROPERTY_NAME", name, typeName, groupName, propertyName)
ui_custom_popup_infield{2}	name, x, y, width, height,
				1, 3, 1, propertyName,
				"None", "", "", "None",
				uiZoneParam,
				parentProperties&lt;/LI-CODE&gt;&lt;P&gt;These are not the actual code. I simplified it a bit but yes, you get the idea. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 08:47:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359230#M2208</guid>
      <dc:creator>Palawat</dc:creator>
      <dc:date>2022-10-20T08:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359534#M2209</link>
      <description>&lt;P&gt;BTW. Zone labels biggest drawback (resulting in "not using" in general) is inability to access the zone stamp parameters - GS devs please read &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Oct 2022 05:31:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/359534#M2209</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2022-10-23T05:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/360844#M2210</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please enter/vote a &lt;A href="https://community.Graphisoft.com/t5/Wishes-forum/bd-p/ideas" target="_blank" rel="noopener"&gt;wish&lt;/A&gt; about those which aren't available as properties.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 08:52:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/360844#M2210</guid>
      <dc:creator>Peter Baksa</dc:creator>
      <dc:date>2022-11-02T08:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/360847#M2211</link>
      <description>&lt;P&gt;Done&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 09:02:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/360847#M2211</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2022-11-02T09:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Zone Labels: read parameters from zones</title>
      <link>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/360849#M2212</link>
      <description>&lt;P&gt;The example objects from Graphisoft are very complicated. The GDL manual is also not very well documented. It therefore took me a while to figure out the simplest version of how to read a room stamp parameter with a label (Thank You Palawat for the hint).&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;IF _param[i] = "Room Name" THEN
  _actProperty = "Builtin.Zone_ZoneName" ! Room Name
  m = request ("Property_Value_Of_Parent", _actProperty, _typeValue, dim1, dim2, _propertyValues)
  _content_2D[i] = _propertyValues
ENDIF&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Nov 2022 09:10:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Zone-Labels-read-parameters-from-zones/m-p/360849#M2212</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2022-11-02T09:10:21Z</dc:date>
    </item>
  </channel>
</rss>

