<?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 Betreff: Multiple on/off switches via array for switching within UI script in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647344#M7359</link>
    <description>&lt;P&gt;Hi Matt,&lt;BR /&gt;if you use VALUES{2}&amp;nbsp; you must obligatory use an Integer Type of Parameter. Length is not allowed.&lt;BR /&gt;As Barry wrote you can use Boolean as well, but then you do not need VALUES{2} at all.&lt;BR /&gt;Please check the manual for the according UI_INFIELDS for Booleans.&lt;BR /&gt;Please do not declare an Array in the Master-Script, when you have defined it before in the Parameters Section.&lt;BR /&gt;Attached an example with ingteger and boolean parameters.&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jan 2025 09:06:34 GMT</pubDate>
    <dc:creator>Jochen Suehlo</dc:creator>
    <dc:date>2025-01-24T09:06:34Z</dc:date>
    <item>
      <title>Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647205#M7352</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have some code with a lot of on/off switches, each with a values{2} command and associated parameters i.e.&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;!! Parameters Script&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;values{2} "Switch_1", 0, `Off`,
1, `On`

values{2} "Switch_2", 0, `Off`,
1, `On`

!Etc...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;!! UI Script&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;UI_INFIELD{3} Switch_1, 100, 100, 20, 20, 2, "Switch_Image", 2, 2, 0, 0, 20, 20, 
1,"", 0,                               
2,"", 1

UI_INFIELD{3} Switch_2, 100, 140, 20, 20, 2, "Switch_Image", 2, 2, 0, 0, 20, 20, 
1,"", 0,                               
2,"", 1

!Etc...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to use an array to code these switches instead so that instead of a lot of switch parameters I can just have a single parameter array for all the switches. Is it possible?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My best attempt at the code so far:&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;!!Define Parameter Switch as an array.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;!! Master Script&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DIM Switch[]
Switch[1] = 0
Switch[2] = 0
Parameters Switch[1] =  Switch[1]

Parameters Switch[2] =  Switch[2]

!Etc.&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;!! UI Script&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;UI_INFIELD{3} Switch[1], 100, 100, 20, 20, 2, "Switch_Image", 2, 2, 0, 0, 20, 20, 
1,"", 0,                               
2,"", 1

UI_INFIELD{3} Switch[2], 100, 140, 20, 20, 2, "Switch_Image", 2, 2, 0, 0, 20, 20, 
1,"", 0,                               
2,"", 1

!Etc...&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;But alas it doesn't work or allow switching. My goal is to reduce the number of switch parameters to a single array parameter.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Many thanks, Matt&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 21:35:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647205#M7352</guid>
      <dc:creator>GDL Enthusiast</dc:creator>
      <dc:date>2025-01-23T21:35:21Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647210#M7353</link>
      <description>&lt;P&gt;Why do you need the Master script?&lt;/P&gt;
&lt;P&gt;Do you not know how many switches there are because they are dynamic and generated on the fly?&lt;/P&gt;
&lt;P&gt;That needs some extra logic.&lt;/P&gt;
&lt;P&gt;Other than that you don't need to define it in the Master script. You'll just have to make a parameter. (You actually would get an error message if you try to re-define an array in the Master...).&lt;/P&gt;
&lt;P&gt;Also a last tip: &lt;CODE&gt;PARAMETERS&lt;/CODE&gt; does not work on the level of a single index of an array.&lt;/P&gt;
&lt;P&gt;If you have indeed a dynamic array you'll need to work with temporary arrays, and then at last do something like this&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;switch = temparray
parameters switch = switch&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 23 Jan 2025 15:16:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647210#M7353</guid>
      <dc:creator>runxel</dc:creator>
      <dc:date>2025-01-23T15:16:37Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647216#M7354</link>
      <description>&lt;P&gt;My suggestion would be as follows:&lt;BR /&gt;Create an array parameter in the parameter field, e.g. ‘switch’.&lt;BR /&gt;You can enter the size, i.e. the number of array indices there manually, but you can also control this dynamically in the parameter script.&lt;BR /&gt;Let's assume you enter 6 fields (rows).&lt;BR /&gt;Then you write into the parameter script:&lt;BR /&gt;VALUES{2} ‘switch’, 0, ‘off’, 1, ‘on’&lt;BR /&gt;This command then applies to all sub-array parameters.&lt;BR /&gt;In the user interface, you work through the whole thing with a loop:&lt;BR /&gt;FOR i = 1 TO 6&lt;BR /&gt;UI_INFIELD{3} Switch[i], 100, 100 + (i - 1) * 25, 80, 20, &lt;BR /&gt;8, ‘’, 2, 2, 0, 0, 20, 20, &lt;BR /&gt;1, ‘off’, 0, &lt;BR /&gt;2, ‘on’, 1 &lt;BR /&gt;NEXT i&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 16:58:08 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647216#M7354</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2025-01-23T16:58:08Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647249#M7355</link>
      <description>&lt;P&gt;Hi Jochen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code looks neat, I am struggling to get it to work, a "bad indexed value reference" is popping up in the check. I have attached an image of the initialised array with 6 rows, hopefully I have that right. Could you check this code if possible?&lt;BR /&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;!!Master Script&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DIM Switch[6]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;!!Parameter Script&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VALUES{2} "switch", 0, 'off', 1, 'on'&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;!!Interface Script&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;but I am struggling to get it to work. A "bad indexed value reference" is popping up in the check. I have attached an image of the initialized array with 6 rows; hopefully, I have that right. Could you check this code,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many thanks, Jochen! From Matt&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Initalised Array.PNG" style="width: 720px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82284i75D1AF1E433C02DC/image-dimensions/720x593?v=v2" width="720" height="593" role="button" title="Initalised Array.PNG" alt="Initalised Array.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2025 23:23:45 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647249#M7355</guid>
      <dc:creator>GDL Enthusiast</dc:creator>
      <dc:date>2025-01-25T23:23:45Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647251#M7356</link>
      <description>&lt;P&gt;Hi Runxel,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for responding! In one of my objects I have some 40+ switch parameters with associated Values{2}. These are simple 0,1 state switches. Each time I create a new file for testing, I end up with a tedious process of copying and pasting the parameter names of the switches.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a lot of repeating code for the 40 switch parameters within the interface and parameters script. I thought it would be cool if I could use a for i=1 to 40 loop and reference array values instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is an image of the two options:&lt;/P&gt;
&lt;P&gt;When I call a parameter ui_infield{2} "switch_1", 110, 140, 100, 160, it works.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I call a parameter array with ui_infield{2} switch[1], 110, 140, 100, 160, it returns an error.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it correct that one cannot use an array with&amp;nbsp;ui_infield{2} or is my syntax incorrect?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you so much for your help, from Matt&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Parameter Array Vs Parameter.png" style="width: 719px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82285i57A8F15C3C996852/image-dimensions/719x270?v=v2" width="719" height="270" role="button" title="Parameter Array Vs Parameter.png" alt="Parameter Array Vs Parameter.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2025 23:25:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647251#M7356</guid>
      <dc:creator>GDL Enthusiast</dc:creator>
      <dc:date>2025-01-25T23:25:47Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647254#M7357</link>
      <description>&lt;P&gt;I am not sure about the array technicalities (I would need to play around later).&lt;/P&gt;
&lt;P&gt;But wouldn't it be better to use a boolean parameter rather than a length?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry,&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 00:10:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647254#M7357</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-01-24T00:10:43Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647306#M7358</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;i have tried to replicate the error in a new blank object.&lt;/P&gt;
&lt;P&gt;i drew 2 lines, made them into an object, then copied your code in:&lt;/P&gt;
&lt;P&gt;i repeated your code:&lt;/P&gt;
&lt;P&gt;parameters&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_14-1737680505987.png" style="width: 720px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82304i212038E9A9A37039/image-dimensions/720x537?v=v2" width="720" height="537" role="button" title="AllanP_14-1737680505987.png" alt="AllanP_14-1737680505987.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;master&lt;/P&gt;
&lt;P&gt;i added a push back of the parameter array back into the object parameters,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DIM Switch[6]
parameters  Switch = Switch&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV style="color: #3d3d3d; background-color: #fafafa; font-family: Consolas, 'Courier New', monospace; font-weight: normal; font-size: 12px; line-height: 16px; white-space: pre;"&gt;
&lt;DIV&gt;
&lt;DIV style="color: #3d3d3d; background-color: #fafafa; font-family: Consolas, 'Courier New', monospace; font-weight: normal; font-size: 12px; line-height: 16px; white-space: pre;"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_15-1737680836080.png" style="width: 721px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82311iA1E1D365582D3331/image-dimensions/721x256?v=v2" width="721" height="256" role="button" title="AllanP_15-1737680836080.png" alt="AllanP_15-1737680836080.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this updates the size of parameters to correct array size&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_16-1737680995614.png" style="width: 719px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82313i15EC777FB24ACCA3/image-dimensions/719x273?v=v2" width="719" height="273" role="button" title="AllanP_16-1737680995614.png" alt="AllanP_16-1737680995614.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;automatic code created from archicad&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_2-1737679374196.png" style="width: 721px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82289i3162E81867804828/image-dimensions/721x577?v=v2" width="721" height="577" role="button" title="AllanP_2-1737679374196.png" alt="AllanP_2-1737679374196.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;parameters&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_12-1737679760779.png" style="width: 721px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82299i632F5742522C501C/image-dimensions/721x329?v=v2" width="721" height="329" role="button" title="AllanP_12-1737679760779.png" alt="AllanP_12-1737679760779.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;interface&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_13-1737679776025.png" style="width: 721px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82300i48985539FBDBC45E/image-dimensions/721x335?v=v2" width="721" height="335" role="button" title="AllanP_13-1737679776025.png" alt="AllanP_13-1737679776025.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;click on preview button&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_17-1737681061869.png" style="width: 719px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82315i41950C98DC57E402/image-dimensions/719x325?v=v2" width="719" height="325" role="button" title="AllanP_17-1737681061869.png" alt="AllanP_17-1737681061869.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when open the object and change to the graphical interface window,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_10-1737679694758.png" style="width: 421px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82297iF6D30E5D25044992/image-dimensions/421x340?v=v2" width="421" height="340" role="button" title="AllanP_10-1737679694758.png" alt="AllanP_10-1737679694758.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or changing to the parameter script&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AllanP_9-1737679681385.png" style="width: 421px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/82296i8D31E48A9FFCEBD4/image-dimensions/421x188?v=v2" width="421" height="188" role="button" title="AllanP_9-1737679681385.png" alt="AllanP_9-1737679681385.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;as an array, the values are not seen in the parameters list unless you open the array&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;example shown was in archicad 27.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2025 23:30:52 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647306#M7358</guid>
      <dc:creator>AllanP</dc:creator>
      <dc:date>2025-01-25T23:30:52Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647344#M7359</link>
      <description>&lt;P&gt;Hi Matt,&lt;BR /&gt;if you use VALUES{2}&amp;nbsp; you must obligatory use an Integer Type of Parameter. Length is not allowed.&lt;BR /&gt;As Barry wrote you can use Boolean as well, but then you do not need VALUES{2} at all.&lt;BR /&gt;Please check the manual for the according UI_INFIELDS for Booleans.&lt;BR /&gt;Please do not declare an Array in the Master-Script, when you have defined it before in the Parameters Section.&lt;BR /&gt;Attached an example with ingteger and boolean parameters.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 09:06:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647344#M7359</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2025-01-24T09:06:34Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647428#M7360</link>
      <description>&lt;P&gt;Hi Jochen,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You are amazing!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I love seeing the code working, such joy. Thank you especially for the sample object, that helped so much, I can now code away.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards and thank you again, from Matt&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2025 00:53:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647428#M7360</guid>
      <dc:creator>GDL Enthusiast</dc:creator>
      <dc:date>2025-01-25T00:53:47Z</dc:date>
    </item>
    <item>
      <title>Betreff: Multiple on/off switches via array for switching within UI script</title>
      <link>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647429#M7361</link>
      <description>&lt;P&gt;Hi AllanP,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for taking the time to test the code and posting all the screen captures, super helpful for me and most appreciated!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wishing you the best from Matt&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jan 2025 00:55:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Multiple-on-off-switches-via-array-for-switching-within-UI/m-p/647429#M7361</guid>
      <dc:creator>GDL Enthusiast</dc:creator>
      <dc:date>2025-01-25T00:55:28Z</dc:date>
    </item>
  </channel>
</rss>

