<?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: I want to know the name of the parameter variable in the parameter script easily. in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373471#M863</link>
    <description>&lt;P&gt;gs_Leaf_width_open (DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you&lt;BR /&gt;Today, with your help, I go up one step.^^&lt;BR /&gt;But since it's GDL I made, there are a lot of numbers after the recognition, is that okay?&lt;/P&gt;</description>
    <pubDate>Fri, 17 Mar 2023 04:23:20 GMT</pubDate>
    <dc:creator>LeeJaeYoung</dc:creator>
    <dc:date>2023-03-17T04:23:20Z</dc:date>
    <item>
      <title>I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372586#M850</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LeeJaeYoung_0-1678343893086.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/34954iA8CE2144F2FD6FBF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LeeJaeYoung_0-1678343893086.png" alt="LeeJaeYoung_0-1678343893086.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I want to know the name of the parameter variable in the parameter script easily. Is there any easy way to find it?&lt;BR /&gt;Right now I want to know the name of the image above.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 06:40:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372586#M850</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-09T06:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372729#M851</link>
      <description>&lt;P&gt;The only suggestion I have is to open the script for the door.&lt;/P&gt;
&lt;P&gt;Look at the Interface script.&lt;/P&gt;
&lt;P&gt;You may have to open some of the door macros to find it as Graphisoft like to CALL macros in their doors and windows.&lt;/P&gt;
&lt;P&gt;Once you have found the interface script, you will need to find the page for 'Shape'.&lt;/P&gt;
&lt;P&gt;Then you should be able to see the parameter names they use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 06:52:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372729#M851</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-03-10T06:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372751#M852</link>
      <description>&lt;P&gt;Is there any detailed explanation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;call "gs_general_lt_door_macro" 

Go to gs_general_lt_door_macro and in interface

! -------------------------------------------------- ------------------------------
! Independent pages
! -------------------------------------------------- ------------------------------
if bShapeTabpage then
uiUsedPageIDs[idxPage][1] = iUiID_Shape : uiUsedPageIDs[idxPage][2] = iParID_Shape
uiUsedPageNames[idxPage][1] = `Shape` : uiUsedPageNames[idxPage][2] = "uiTab_DoorShape_hl(1)"
idxPage = idxPage + 1
endif

&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the only `Shape` item. How do I find it?&lt;/P&gt;
&lt;P&gt;Should I just give up on finding parameters and just create and use them? ^^&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 03:53:50 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372751#M852</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-13T03:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372753#M853</link>
      <description>&lt;P&gt;I had a poke around and I couldn't find the 'Shape' page in the maze of macros.&lt;/P&gt;
&lt;P&gt;Just scanning through the parameter list in the door object itself I could see these.&lt;/P&gt;
&lt;P&gt;They are the ones you show in your image.&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="BarryKelly_0-1678439243375.png" style="width: 954px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/34991i68072AECC921E50A/image-size/large?v=v2&amp;amp;px=999" role="button" title="BarryKelly_0-1678439243375.png" alt="BarryKelly_0-1678439243375.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 09:07:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372753#M853</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-03-10T09:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372756#M854</link>
      <description>&lt;P&gt;Your answer really helps me.&lt;BR /&gt;thank you&lt;BR /&gt;As expected, the translator has many shortcomings in conveying my heart. ^^&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 10:32:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372756#M854</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-10T10:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372757#M855</link>
      <description>&lt;P&gt;We hope that beginners can easily find parameter variable names. ^^&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 10:34:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372757#M855</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-10T10:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372771#M856</link>
      <description>&lt;P&gt;I'm sorry ^^&lt;/P&gt;</description>
      <pubDate>Fri, 10 Mar 2023 12:55:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/372771#M856</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-10T12:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373338#M857</link>
      <description>&lt;P&gt;One way to find it relatively quick is writing print GLOB_MODPAR_NAME at the start of the object, save it, change the parameter on the ui, and check the session report window.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 10:48:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373338#M857</guid>
      <dc:creator>Peter Baksa</dc:creator>
      <dc:date>2023-03-16T10:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373340#M858</link>
      <description>&lt;P&gt;Wouldn't it be rude if I ask for a sample code because I'm weak in understanding?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 10:53:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373340#M858</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-16T10:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373444#M859</link>
      <description>&lt;P&gt;Just type... PRINT GLOB_MODPAR_NAME ... at the beginning of the script.&lt;/P&gt;
&lt;P&gt;Amend the parameter in your placed object.&lt;/P&gt;
&lt;P&gt;Then FILE menu &amp;gt; Info &amp;gt; Session Report to see the name of the parameter you just changed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are using the default Graphisoft library, you will have to 'Save As' a new object after you have edited the script.&lt;/P&gt;
&lt;P&gt;Then place that new object to test.&lt;/P&gt;
&lt;P&gt;Then you can simply discard that object when you have finished with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise you will have to extract the LCF library, load that extracted library and unload the LCF library, amend the object to run the test, then unload that extracted library and reload the original LCF file so you are back to normal operation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 01:25:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373444#M859</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-03-17T01:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373454#M860</link>
      <description>&lt;P&gt;Even today, I am touched by your kindness.&lt;BR /&gt;thank you&lt;BR /&gt;Have a happy time ^^&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 02:18:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373454#M860</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-17T02:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373455#M861</link>
      <description>&lt;P&gt;However, in the master script&lt;BR /&gt;PRINT GLOB_MODPAR_NAME&lt;BR /&gt;I put PRINT GLOB_MODPAR_NAME in the 2d script, but it is not displayed?&lt;BR /&gt;I changed the window width 1200 &amp;gt; 1800 &amp;gt; 2000 .....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;C:\Program Files\GRAPHISOFT\Archicad 26\Archicad.exe&lt;BR /&gt;Unused in temporary folder : 15416.3 MB&lt;BR /&gt;Conversion of Objects to MEP elements begin.&lt;BR /&gt;Statistics:&lt;BR /&gt;Checked elements: 16.&lt;BR /&gt;Objects without MEP elements removed: 0/0.&lt;BR /&gt;MEP compatible elements converted: 0/0.&lt;BR /&gt;Inconsistent elements: 0/0.&lt;BR /&gt;Derived data updated: 0/0.&lt;BR /&gt;MEP structure created: 0/0.&lt;BR /&gt;Segments with unconnected holes: 0/0.&lt;BR /&gt;Repair function #1: 0.&lt;BR /&gt;Converted to Objects: 0/0&lt;BR /&gt;Conversion of Objects to MEP elements end.&lt;BR /&gt;Projection : Front view&lt;BR /&gt;Camera azimuth : 270&lt;BR /&gt;Start time : 2023-03-17 오전 7:35:21&lt;/P&gt;
&lt;P&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 127B155E-303E-4EDA-AEFC-BE6F7D7F9E99)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 127B155E-303E-4EDA-AEFC-BE6F7D7F9E99)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;Start time : 2023-03-17 오전 10:19:44&lt;BR /&gt;End time : 2023-03-17 오전 10:19:44&lt;BR /&gt;Elapsed time : 0 seconds&lt;BR /&gt;----------------------------------------------------------------------&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 127B155E-303E-4EDA-AEFC-BE6F7D7F9E99)&lt;BR /&gt;(DOO - 034 | 127B155E-303E-4EDA-AEFC-BE6F7D7F9E99)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;(DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;BR /&gt;Projection : Front view&lt;BR /&gt;Camera azimuth : 270&lt;BR /&gt;Start time : 2023-03-17 오전 10:20:55&lt;BR /&gt;End time : 2023-03-17 오전 10:20:55&lt;BR /&gt;Elapsed time : 0 seconds&lt;BR /&gt;----------------------------------------------------------------------&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 02:24:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373455#M861</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-17T02:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373463#M862</link>
      <description>&lt;P&gt;I just tried and it seems to work best in Parameter script.&lt;/P&gt;
&lt;P&gt;Master script is run more often so you will get more messages.&lt;/P&gt;
&lt;P&gt;Doesn't work in the 2D/3D script.&lt;/P&gt;
&lt;P&gt;Also with width and height you have to open the object settings and adjust parameters there because that is where you adjust other parameters.&lt;/P&gt;
&lt;P&gt;Doesn't work with changes you make in the info box.&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="BarryKelly_0-1679021412018.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/35191i0C09E4A2F81EB7CB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BarryKelly_0-1679021412018.png" alt="BarryKelly_0-1679021412018.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also in your Work Environment, make sure you have 'Write Report' turned on and maybe set it to full report.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BarryKelly_1-1679021660281.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/35192i61E87B9F29428ED1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BarryKelly_1-1679021660281.png" alt="BarryKelly_1-1679021660281.png" /&gt;&lt;/span&gt;&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="BarryKelly_2-1679021674980.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/35193i750AAC3F92DAD667/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BarryKelly_2-1679021674980.png" alt="BarryKelly_2-1679021674980.png" /&gt;&lt;/span&gt;&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="BarryKelly_3-1679021953623.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/35194i0E37ABABA1BF9DE5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="BarryKelly_3-1679021953623.png" alt="BarryKelly_3-1679021953623.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 02:59:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373463#M862</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-03-17T02:59:22Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373471#M863</link>
      <description>&lt;P&gt;gs_Leaf_width_open (DOO - 034 | 4C6E8839-CCE3-4291-AFAE-A681987ACA80)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thank you&lt;BR /&gt;Today, with your help, I go up one step.^^&lt;BR /&gt;But since it's GDL I made, there are a lot of numbers after the recognition, is that okay?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 04:23:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373471#M863</guid>
      <dc:creator>LeeJaeYoung</dc:creator>
      <dc:date>2023-03-17T04:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: I want to know the name of the parameter variable in the parameter script easily.</title>
      <link>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373474#M864</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/11600"&gt;@LeeJaeYoung&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;But since it's GDL I made, there are a lot of numbers after the recognition, is that okay?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That is just the element ID and maybe the object GUID.&lt;/P&gt;
&lt;P&gt;Just ignore what is in the brackets.&lt;/P&gt;
&lt;P&gt;You just need to know the parameter name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 05:20:12 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/I-want-to-know-the-name-of-the-parameter-variable-in-the/m-p/373474#M864</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-03-17T05:20:12Z</dc:date>
    </item>
  </channel>
</rss>

