<?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: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm) in GDL</title>
    <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378588#M224</link>
    <description>&lt;P&gt;Thanks Peter - I knew you would have something to share! And thanks everyone for your comments, they are all much appreciated! While I don't have a perfect solution ('by design' for a good reason), I think Peter's use of GLOB_FEEDBACK_MODE (which I never used before) and having fixed hotspots (which can be driven by the text width are great in combination. Refer to attached image. It would be great if Hotspots could be seen only when&amp;nbsp;GLOB_FEEDBACK_MODE = 1 though (unless of course I am missing something)!&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="http://community.graphisoft.com/t5/image/serverpage/image-id/56443i660422F36B786AF6/image-size/large?v=v2&amp;amp;px=999" border="0" alt="Fixed_Hotspots.png" title="Fixed_Hotspots.png" /&gt;</description>
    <pubDate>Wed, 03 May 2023 13:12:14 GMT</pubDate>
    <dc:creator>Brendon Reid</dc:creator>
    <dc:date>2023-05-03T13:12:14Z</dc:date>
    <item>
      <title>Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378237#M209</link>
      <description>&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a label that extracts data from Walls. When placed, it is positioned parallel to the Wall. I have used a Request statement to get the width of the relevant data text to create a 'pill-shaped' frame (incl. fill). This label also has a custom leader that points to the element (Archicad's Pointer is not used). This is all working well. What I would like to do (something I'm struggling with and seeking help on) is to be able to dynamically move the 'pill-shaped' frame to three different fixed positions along a single axis (parallel with the Wall). I have already coded a dynamic hotspot to run along this axis, and the 'pill-shaped' frame runs along with no problem, but it is infinite. I want it to be fixed to three positions. Refer to the attached image for where I would like the positions fixed. From my exploration and testing, I can't get the text width into the Parameter script (where I'm trying to fix these positions with a Value statement). FYI my Value statement looks like VALUES "dynamicOffset1m" RANGE [-0.0015,0.0015] STEP 0, 0.0015. I'd like to replace the '0.0015' with text width calculations. Does anyone know how to achieve this? Thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="http://community.graphisoft.com/t5/image/serverpage/image-id/56432i1B3E0A7253BBDFC5/image-size/large?v=v2&amp;amp;px=999" border="0" alt="Dynamic_Hotspot.png" title="Dynamic_Hotspot.png" /&gt;</description>
      <pubDate>Sun, 30 Apr 2023 01:48:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378237#M209</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-04-30T01:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378283#M210</link>
      <description>&lt;P&gt;Just off the top of my head without testing, wouldn't you just use the width value you got from the REQUEST?&lt;/P&gt;
&lt;P&gt;i.e the same parameter/value you use to set the text box width.&lt;/P&gt;
&lt;P&gt;Assuming the returned parameter is 'box_wid'&lt;/P&gt;
&lt;P&gt;Something like ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VALUES "dynamicOffset1m" -box_wid*0.5, 0, box_wid*0.5&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wouldn't use STEP, just give the 3 values you want to use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 06:17:51 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378283#M210</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-05-03T06:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378288#M211</link>
      <description>&lt;P&gt;Hi Barry&lt;/P&gt;&lt;P&gt;You would think that is the obvious solution! Although, unfortunately you can't get the 'box_wid' value as it is REQUESTed (and transformed with GLOB_SCALE) in the 2D Script. I have tried moving the REQUEST statement to the Parameter Script, but you get a 'Project dependent request' error.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Brendon&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 02:34:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378288#M211</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-01T02:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378300#M212</link>
      <description>&lt;P&gt;Since you are just having it snap to the sides, and each label maybe different, why not just have it be:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;VALUES{2} dynamicOffset1mfg -1, Left, 0, None, 1, Right&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Since the positions are set to nodes on the pill, the actual offset is kind of irrelivant to the user. Then in your script you just have a transformation which is &amp;nbsp;&lt;EM&gt;dynamicOffset1mfg&amp;nbsp;* box_wid&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ling.&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 04:34:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378300#M212</guid>
      <dc:creator>Lingwisyer</dc:creator>
      <dc:date>2023-05-01T04:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378301#M213</link>
      <description>&lt;P&gt;Hi BR,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Yes! I always wanted to use the text string width for moveable hotspots but couldn't work out how.. as a workaround.. I'm using the custom leader to toggle between 3 anchor points.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DEFINE STYLE "tzg_marker1" LABEL_FONT_NAME, LABEL_TEXT_SIZE, ANCHOR, LABEL_FONT_STYLE&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT size="2"&gt;(Anchor set to 7, 8, or 9)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if you find a way to limit the hotspot points based on return values!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="http://community.graphisoft.com/t5/image/serverpage/image-id/56433i842E716E59251265/image-size/large?v=v2&amp;amp;px=999" border="0" alt="Screenshot 2023-05-01 at 2.25.17 pm.png" title="Screenshot 2023-05-01 at 2.25.17 pm.png" /&gt;</description>
      <pubDate>Wed, 03 May 2023 06:18:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378301#M213</guid>
      <dc:creator>Kevin Lee</dc:creator>
      <dc:date>2023-05-03T06:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378302#M214</link>
      <description>&lt;P&gt;Hi Ling&lt;/P&gt;&lt;P&gt;That is in fact my fall back. But unfortunately this is not so great, as the 'text box width' will vary due to the called Wall data and scale of the View! Maybe I have encountered a limitation!&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 04:40:00 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378302#M214</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-01T04:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378303#M215</link>
      <description>&lt;P&gt;Hi Kev!&lt;/P&gt;&lt;P&gt;Yes this is an option too. Maybe it is a limitation! How good would it be to have a fix though!&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 04:42:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378303#M215</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-01T04:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378304#M216</link>
      <description>&lt;P&gt;Hi Kev&lt;/P&gt;&lt;P&gt;Upon having a closer look, I think there is definitely something in your suggestion worth exploring... I think I can move the frame the required distance no matter how long the length of text using this method. Now if I can only get a dynamic hotspot to link to the 'Anchor'... I'll give this a go and let you know! Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 04:49:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378304#M216</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-01T04:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378315#M217</link>
      <description>&lt;P&gt;I attach an example from a stretchable cabinet.&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 11:21:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378315#M217</guid>
      <dc:creator>Jochen Suehlo</dc:creator>
      <dc:date>2023-05-01T11:21:53Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378317#M218</link>
      <description>&lt;P&gt;Thanks Joachim - much appreciated. Unfortunately, these fixed points are not tied to an output scale (e.g. 5mm at 1:100, or 15mm at 1:50). What makes my request even more complicated is I'm trying to tie my fixed points to a length that will vary depending on the width of the RICHTEXT block. &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2023 12:23:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378317#M218</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-01T12:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378397#M219</link>
      <description>&lt;P&gt;Refer to window / door marker objects to see how it works:&lt;/P&gt;
&lt;PRE class="programlisting" style="box-sizing: border-box; overflow: auto; font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace; font-size: 14px; display: block; padding: 11.5px; margin: 0px 0px 12px; line-height: 1.6; word-break: break-all; overflow-wrap: break-word; color: #000000 !important; background-color: #f9f9f9; border: 1px solid #dddddd; border-radius: 2px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"&gt;&lt;CODE class="code hljs" style="box-sizing: border-box; font-family: 'SF Mono', Monaco, Consolas, 'Courier New', monospace; font-size: inherit; padding: 0.5em; color: #000000; background-color: inherit !important; border-radius: 0px; white-space: pre-wrap; display: block; overflow-x: auto;"&gt;HOTSPOT2&lt;/CODE&gt; x, y [, unID [, paramReference [, flags [, displayParam [, "customDescription"]]]]]&lt;/PRE&gt;
&lt;P&gt;the key is "displayparam"&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 08:46:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378397#M219</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2023-05-02T08:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378481#M220</link>
      <description>&lt;P&gt;Hi Piotr&lt;/P&gt;&lt;P&gt;Yes, thanks. I do have a Hotspot2 command that utilises displayParam (referring to my image you can see it is called 'Display Offset mm'). Unless I am missing something, the problem is I can't fix that parameter to a RANGE because those values are not accessible in the Parameter script. I'll take a closer look in any case. Thanks again - appreciate your response!&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2023 23:01:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378481#M220</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-02T23:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378510#M221</link>
      <description>&lt;P&gt;You have to have the both parameters set and "valued" in parameters script.&lt;/P&gt;
&lt;P&gt;That is another trick,&amp;nbsp; and 1024 status is another&lt;/P&gt;
&lt;P&gt;Actually I dig some example where there are 3 parameters: the M (meters) MM (millimeters) are real number. But I believe I have some other with just 2 parameters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;hotspot2 0, 0, unID, extensionLineLengthM, 1+1024, extensionLineLengthMM :unID = unID + 1 !BASE (hidden)
hotspot2 0, 1, unID, extensionLineLengthM, 3+1024, extensionLineLengthMM :unID = unID + 1 !REFERENCE
hotspot2 0, -extensionLineLength, unID, extensionLineLengthM, 2+1024, extensionLineLengthMM :unID = unID + 1 !MOVING&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;l&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 06:19:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378510#M221</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2023-05-03T06:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378519#M222</link>
      <description>&lt;P&gt;Hey Brendon,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure this can be achieved if your label is sizing based on scale (paper size). Assuming you need to right a "Values "pointPosition" range(..." command in the parameters script. If your label is sizing based on scale, then you can't calculate the range because there is no way of requesting scale in the parameter script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got close by creating a style in the master script, then by using "stw(myString)". But unfortunately, that doesn't factor in the scale. So, the number I get is only correct using model size and not paper size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know Graphisoft removed using "glob_scale" in the parameters script in version 20. It would be good if they can give us an alternative to requesting scale from the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Shaun.&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 05:29:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378519#M222</guid>
      <dc:creator>ShaunTaylor</dc:creator>
      <dc:date>2023-05-03T05:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378556#M223</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;I know Graphisoft removed using "glob_scale" in the parameters script in version 20. It would be good if they can give us an alternative to requesting scale from the model.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It was removed because using it would lead to incorrect state of the object.&lt;/P&gt;
&lt;P&gt;Anything in Archicad can have multiple views with different settings, but only one parameter set. Scheduling, teamwork and interoperability features use the parameter set, it can't depend on the last applied view with the BIM approach.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A workaround is to give graphical feedback in GLOB_FEEDBACK_MODE. Then the hotspot doesn't have to have a limit, but you still can give hint about the separate options. An editable hotspot can be drawn at a fixed position x: hotspot2 x, 0, unID, editedParam...&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 09:48:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378556#M223</guid>
      <dc:creator>Peter Baksa</dc:creator>
      <dc:date>2023-05-03T09:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378588#M224</link>
      <description>&lt;P&gt;Thanks Peter - I knew you would have something to share! And thanks everyone for your comments, they are all much appreciated! While I don't have a perfect solution ('by design' for a good reason), I think Peter's use of GLOB_FEEDBACK_MODE (which I never used before) and having fixed hotspots (which can be driven by the text width are great in combination. Refer to attached image. It would be great if Hotspots could be seen only when&amp;nbsp;GLOB_FEEDBACK_MODE = 1 though (unless of course I am missing something)!&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="http://community.graphisoft.com/t5/image/serverpage/image-id/56443i660422F36B786AF6/image-size/large?v=v2&amp;amp;px=999" border="0" alt="Fixed_Hotspots.png" title="Fixed_Hotspots.png" /&gt;</description>
      <pubDate>Wed, 03 May 2023 13:12:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378588#M224</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-03T13:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378622#M225</link>
      <description>&lt;P&gt;Hi Brendon,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think I have managed to come up with a solution thanks to Peter's comment. Peter gave me an idea which seemed to have worked. Although I didn't use GLOB_FEEDBACK_MODE, I used a variable in the 2D Script that forces the hotspots to not exceed the beginning of your curve via an if statement. I have attached the file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Shaun.&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 00:00:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378622#M225</guid>
      <dc:creator>ShaunTaylor</dc:creator>
      <dc:date>2023-05-04T00:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378626#M226</link>
      <description>&lt;P&gt;Hi Shaun&lt;/P&gt;&lt;P&gt;Although my Label works the opposite (my 'pill' moves, not the leader), the functionality provides an even better result! And such a simple way to do it! Thanks for this; much appreciated!&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 01:09:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378626#M226</guid>
      <dc:creator>Brendon Reid</dc:creator>
      <dc:date>2023-05-04T01:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: Limiting 2D Symbol dynamic hotspots to a (Value) Range of output units (mm)</title>
      <link>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378674#M227</link>
      <description>&lt;P&gt;Hi Brendon&lt;/P&gt;
&lt;P&gt;Doing in the label seems tricky so I made a new label and called the code label as shown in the script.&lt;/P&gt;
&lt;P&gt;it needs a directional rotation (for the wall direction) and a moveable hotspot but that shouldn't be difficult.&lt;/P&gt;
&lt;P&gt;Just a thought.....&lt;/P&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DavidShorter_0-1683183942471.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/36813iB1695098F7B996C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DavidShorter_0-1683183942471.png" alt="DavidShorter_0-1683183942471.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 07:09:12 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/GDL/Limiting-2D-Symbol-dynamic-hotspots-to-a-Value-Range-of-output/m-p/378674#M227</guid>
      <dc:creator>David Shorter</dc:creator>
      <dc:date>2023-05-04T07:09:12Z</dc:date>
    </item>
  </channel>
</rss>

