<?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 How to constrain dynamic hotspots to set distance intervals? in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322861#M2275</link>
    <description>&lt;P&gt;I'm creating an L support that have length from 1 to 2 m in increments on 0.1 m. I vaguely remember a list or array in the parameter script but I can't find the example I did (got helped by someone here) a long time ago. Anyone with a fresh mind?&lt;/P&gt;&lt;P&gt;/M&lt;/P&gt;</description>
    <pubDate>Tue, 23 Nov 2021 21:22:23 GMT</pubDate>
    <dc:creator>Mats_Knutsson</dc:creator>
    <dc:date>2021-11-23T21:22:23Z</dc:date>
    <item>
      <title>How to constrain dynamic hotspots to set distance intervals?</title>
      <link>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322861#M2275</link>
      <description>&lt;P&gt;I'm creating an L support that have length from 1 to 2 m in increments on 0.1 m. I vaguely remember a list or array in the parameter script but I can't find the example I did (got helped by someone here) a long time ago. Anyone with a fresh mind?&lt;/P&gt;&lt;P&gt;/M&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 21:22:23 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322861#M2275</guid>
      <dc:creator>Mats_Knutsson</dc:creator>
      <dc:date>2021-11-23T21:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to constrain dynamic hotspots to set distance intervals?</title>
      <link>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322865#M2276</link>
      <description>&lt;P&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/6261"&gt;@Mats_Knutsson&lt;/a&gt;&amp;nbsp;Try adding this into your Parameter Script...&lt;/P&gt;&lt;P&gt;VALUES "My_Parameter" RANGE [ 1.0, 2.0 ] STEP 0.1&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 21:28:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322865#M2276</guid>
      <dc:creator>DGSketcher</dc:creator>
      <dc:date>2021-11-23T21:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to constrain dynamic hotspots to set distance intervals?</title>
      <link>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322867#M2277</link>
      <description>&lt;P&gt;Checked syntax... try this instead&lt;/P&gt;&lt;P&gt;VALUES "My_Parameter" RANGE ( , 2.0] STEP 1.0, 0.1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 21:39:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322867#M2277</guid>
      <dc:creator>DGSketcher</dc:creator>
      <dc:date>2021-11-23T21:39:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to constrain dynamic hotspots to set distance intervals?</title>
      <link>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322951#M2278</link>
      <description>&lt;P&gt;You can also do it without the RANGE - although that is probably the better way to do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;VALUES "My_Parameter" 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 01:38:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322951#M2278</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-11-24T01:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to constrain dynamic hotspots to set distance intervals?</title>
      <link>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322992#M2279</link>
      <description>&lt;P&gt;And to take&amp;nbsp;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/7331"&gt;@Barry Kelly&lt;/a&gt;&amp;nbsp;solution to it's inevitable conclusion...&lt;/P&gt;&lt;P&gt;Create an array containing the value list ( DIM ValList [11] ) above and then simply use...&lt;/P&gt;&lt;P&gt;VALUES "My_Parameter" ValList&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 09:06:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/322992#M2279</guid>
      <dc:creator>DGSketcher</dc:creator>
      <dc:date>2021-11-24T09:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to constrain dynamic hotspots to set distance intervals?</title>
      <link>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/323105#M2280</link>
      <description>&lt;P&gt;Thanks again! Actual code snippets like this is king! I wonder why GS doesn't produce a bunch...? They describe the gdl in a very technical way in the manual. I'm not a programmer at all...barely survived the mandatory pascal at school back in 1989...but I can understand pretty much when I see the coding in a real example. I mean, look at the prism command... try to do a filled circle from reading the manual...hmmm...&lt;/P&gt;&lt;P&gt;Now I'll create a few tree symbols. Our landscapers (20 odd people) are going to change from Autocad+NovaPoint to Archicad+Land4 and they need some simple library parts to get going. Funny project :). We'll save huge amounts of money bu changing software and as icing on the cake we get better functionality.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Nov 2021 06:46:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/How-to-constrain-dynamic-hotspots-to-set-distance-intervals/m-p/323105#M2280</guid>
      <dc:creator>Mats_Knutsson</dc:creator>
      <dc:date>2021-11-25T06:46:21Z</dc:date>
    </item>
  </channel>
</rss>

