<?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>Thema "Betreff: Hotspot" in Programmierung</title>
    <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615491#M7821</link>
    <description>&lt;P&gt;"Toter" Hotspot ist es nicht. Hab die Hotspot verschoben.&lt;BR /&gt;_unid wurde in beiden Fällen vorher nicht erstellt. Ist es also auch nicht.&lt;BR /&gt;&lt;BR /&gt;Hab immer wieder Teile des Skripts gelöscht und bin zum Schluss gekommen, dass es an den Strichlinien im 3D Skript liegt.&lt;/P&gt;&lt;P&gt;Hab dazu ein Subprogramm in beiden GDL Objekten. Ist aber unterschiedlich im Einsatz.&lt;/P&gt;&lt;P&gt;Also am Subprogramm selber liegts nicht, nur an dessen Anwendung.&lt;BR /&gt;... komm aber nicht auf den Fehler&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hier das Subprogramm&lt;BR /&gt;"Dashed Line":&lt;BR /&gt;!Input: ! - Line end points: (x1, y1, z1~z) and (x2, y2, z2)&lt;BR /&gt;! - Dash length: dashLength&lt;BR /&gt;if getValues then&lt;BR /&gt;x1 = get(1): y1 = get(1): z1 = get(1)&lt;BR /&gt;x2 = get(1): y2 = get(1): z2 = get(1)&lt;BR /&gt;dashLength = get(1)&lt;BR /&gt;getValues = 0&lt;BR /&gt;endif&lt;BR /&gt;!Return: NONE !Draw a dashed line&lt;BR /&gt;!Calculate the line length and direction vectors&lt;BR /&gt;ux = x2 - x1&lt;BR /&gt;uy = y2 - y1&lt;BR /&gt;uz = z2 - z1&lt;BR /&gt;L = sqr(ux^2 + uy^2 + uz^2)&lt;BR /&gt;ux = ux/L&lt;BR /&gt;uy = uy/L&lt;BR /&gt;uz = uz/L&lt;BR /&gt;!Calculate the length of the first and last dashes&lt;BR /&gt;nDashes = int(1 + (L + dashLength)/(2*dashLength))&lt;BR /&gt;extraLength = (nDashes*(2*dashLength)-dashLength)-L&lt;BR /&gt;startLength = dashLength - extraLength/2&lt;BR /&gt;!Draw the lines&lt;BR /&gt;add x1, y1, z1&lt;BR /&gt;lin_ 0, 0, 0,&lt;BR /&gt;startLength*ux, startLength*uy, startLength*uz&lt;BR /&gt;L1 = startLength + dashLength&lt;BR /&gt;repeat&lt;BR /&gt;L2 = min(L1 + dashLength, L)&lt;BR /&gt;lin_ L1*ux, L1*uy, L1*uz,&lt;BR /&gt;L2*ux, L2*uy, L2*uz&lt;BR /&gt;L1 = L2 + dashLength&lt;BR /&gt;until L1 &amp;gt; L&lt;BR /&gt;del 1&lt;BR /&gt;return&lt;BR /&gt;&lt;BR /&gt;Hab dieses Subprogramm zwar auch in beiden GDL Objekten. Ist aber unterschiedlich im Einsatz.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 13 Jul 2024 20:37:53 GMT</pubDate>
    <dc:creator>Rainer123</dc:creator>
    <dc:date>2024-07-13T20:37:53Z</dc:date>
    <item>
      <title>Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/613559#M7816</link>
      <description>&lt;P&gt;Hallo,&lt;BR /&gt;Ich habe für 2 GDL Objekte im 3D Script je die selben Zeilen für meinen Hotspot geschrieben:&lt;BR /&gt;&lt;BR /&gt;"&lt;/P&gt;&lt;P&gt;hotspot 0, 0, ZZYZX/2, _unID, A, 1+128 !BASE (hidden)&lt;BR /&gt;_unID = _unID + 1&lt;/P&gt;&lt;P&gt;hotspot -1, 0, ZZYZX/2, _unID, A, 3 !REFERENCE&lt;BR /&gt;_unID = _unID + 1&lt;/P&gt;&lt;P&gt;hotspot A, 0, ZZYZX/2, _unID, A, 2 !MOVING&lt;BR /&gt;_unID = _unID + 1&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;In der Innenansicht:&lt;BR /&gt;Bei ersten GDL Objekt-Hotspot kann ich die Breite "A" des Objekts verändern beim Zweiten nicht. Beim Zweiten fehlt mir beim Pop UP Fenster die Option "Knotenpunkt verschieben"&lt;/P&gt;&lt;P&gt;Im 3D:&lt;BR /&gt;Bei ersten GDL Objekt-Hotspot kann ich NUR die Breite "A" des Objekts verändern beim Zweiten kann ich Breite und Tiefe verändern.&lt;BR /&gt;&lt;BR /&gt;Ziel ist, dass sich das Zweite Objekt wie das erste verhält.&lt;BR /&gt;Ich habe bereits versucht diese Zeilen an unterschiedlichen Stellen im Skript zun platzieren. Hat leider nichts geholfen.&lt;BR /&gt;Hat jemand eine Idee was hier schief läuft? Danke&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="grey"&gt;Operating system used: &lt;EM&gt;Windows &lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 04:17:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/613559#M7816</guid>
      <dc:creator>Rainer123</dc:creator>
      <dc:date>2024-07-02T04:17:18Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/613575#M7817</link>
      <description>&lt;P&gt;Hast Du an der selben Stelle des editierbaren Hotspots, der nicht funktioniert, vielleicht einen anderen "toten" Hotspot eingesetzt?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Versuch Deinen editierbaren mal im GDL-Script zur Seite zu schieben (addx 2). ..Hotspotbefehele... (del 1) - ob er dann funkioniert.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Eine andere Möglichkeit wäre, dass _unid im 2. Fall zuvor nicht erstellt wurde.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jul 2024 05:06:06 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/613575#M7817</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2024-07-02T05:06:06Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615491#M7821</link>
      <description>&lt;P&gt;"Toter" Hotspot ist es nicht. Hab die Hotspot verschoben.&lt;BR /&gt;_unid wurde in beiden Fällen vorher nicht erstellt. Ist es also auch nicht.&lt;BR /&gt;&lt;BR /&gt;Hab immer wieder Teile des Skripts gelöscht und bin zum Schluss gekommen, dass es an den Strichlinien im 3D Skript liegt.&lt;/P&gt;&lt;P&gt;Hab dazu ein Subprogramm in beiden GDL Objekten. Ist aber unterschiedlich im Einsatz.&lt;/P&gt;&lt;P&gt;Also am Subprogramm selber liegts nicht, nur an dessen Anwendung.&lt;BR /&gt;... komm aber nicht auf den Fehler&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hier das Subprogramm&lt;BR /&gt;"Dashed Line":&lt;BR /&gt;!Input: ! - Line end points: (x1, y1, z1~z) and (x2, y2, z2)&lt;BR /&gt;! - Dash length: dashLength&lt;BR /&gt;if getValues then&lt;BR /&gt;x1 = get(1): y1 = get(1): z1 = get(1)&lt;BR /&gt;x2 = get(1): y2 = get(1): z2 = get(1)&lt;BR /&gt;dashLength = get(1)&lt;BR /&gt;getValues = 0&lt;BR /&gt;endif&lt;BR /&gt;!Return: NONE !Draw a dashed line&lt;BR /&gt;!Calculate the line length and direction vectors&lt;BR /&gt;ux = x2 - x1&lt;BR /&gt;uy = y2 - y1&lt;BR /&gt;uz = z2 - z1&lt;BR /&gt;L = sqr(ux^2 + uy^2 + uz^2)&lt;BR /&gt;ux = ux/L&lt;BR /&gt;uy = uy/L&lt;BR /&gt;uz = uz/L&lt;BR /&gt;!Calculate the length of the first and last dashes&lt;BR /&gt;nDashes = int(1 + (L + dashLength)/(2*dashLength))&lt;BR /&gt;extraLength = (nDashes*(2*dashLength)-dashLength)-L&lt;BR /&gt;startLength = dashLength - extraLength/2&lt;BR /&gt;!Draw the lines&lt;BR /&gt;add x1, y1, z1&lt;BR /&gt;lin_ 0, 0, 0,&lt;BR /&gt;startLength*ux, startLength*uy, startLength*uz&lt;BR /&gt;L1 = startLength + dashLength&lt;BR /&gt;repeat&lt;BR /&gt;L2 = min(L1 + dashLength, L)&lt;BR /&gt;lin_ L1*ux, L1*uy, L1*uz,&lt;BR /&gt;L2*ux, L2*uy, L2*uz&lt;BR /&gt;L1 = L2 + dashLength&lt;BR /&gt;until L1 &amp;gt; L&lt;BR /&gt;del 1&lt;BR /&gt;return&lt;BR /&gt;&lt;BR /&gt;Hab dieses Subprogramm zwar auch in beiden GDL Objekten. Ist aber unterschiedlich im Einsatz.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jul 2024 20:37:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615491#M7821</guid>
      <dc:creator>Rainer123</dc:creator>
      <dc:date>2024-07-13T20:37:53Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615492#M7822</link>
      <description>&lt;P&gt;"Toter" Hotspot ist es nicht. Hab die Hotspot verschoben.&lt;BR /&gt;_unid wurde in beiden Fällen vorher nicht erstellt. Ist es also auch nicht.&lt;/P&gt;&lt;P&gt;Hab immer wieder Teile des Skripts gelöscht und bin zum Schluss gekommen, dass es an den Strichlinien im 3D Skript liegt.&lt;/P&gt;&lt;P&gt;Hab dazu ein Subprogramm in beiden GDL Objekten. Ist aber unterschiedlich im Einsatz.&lt;/P&gt;&lt;P&gt;Also am Subprogramm selber liegts nicht, nur an dessen Anwendung.&lt;BR /&gt;... komm aber nicht auf den Fehler&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hier das Subprogramm&lt;BR /&gt;"Dashed Line":&lt;BR /&gt;!Input: ! - Line end points: (x1, y1, z1~z) and (x2, y2, z2)&lt;BR /&gt;! - Dash length: dashLength&lt;BR /&gt;if getValues then&lt;BR /&gt;x1 = get(1): y1 = get(1): z1 = get(1)&lt;BR /&gt;x2 = get(1): y2 = get(1): z2 = get(1)&lt;BR /&gt;dashLength = get(1)&lt;BR /&gt;getValues = 0&lt;BR /&gt;endif&lt;BR /&gt;!Return: NONE !Draw a dashed line&lt;BR /&gt;!Calculate the line length and direction vectors&lt;BR /&gt;ux = x2 - x1&lt;BR /&gt;uy = y2 - y1&lt;BR /&gt;uz = z2 - z1&lt;BR /&gt;L = sqr(ux^2 + uy^2 + uz^2)&lt;BR /&gt;ux = ux/L&lt;BR /&gt;uy = uy/L&lt;BR /&gt;uz = uz/L&lt;BR /&gt;!Calculate the length of the first and last dashes&lt;BR /&gt;nDashes = int(1 + (L + dashLength)/(2*dashLength))&lt;BR /&gt;extraLength = (nDashes*(2*dashLength)-dashLength)-L&lt;BR /&gt;startLength = dashLength - extraLength/2&lt;BR /&gt;!Draw the lines&lt;BR /&gt;add x1, y1, z1&lt;BR /&gt;lin_ 0, 0, 0,&lt;BR /&gt;startLength*ux, startLength*uy, startLength*uz&lt;BR /&gt;L1 = startLength + dashLength&lt;BR /&gt;repeat&lt;BR /&gt;L2 = min(L1 + dashLength, L)&lt;BR /&gt;lin_ L1*ux, L1*uy, L1*uz,&lt;BR /&gt;L2*ux, L2*uy, L2*uz&lt;BR /&gt;L1 = L2 + dashLength&lt;BR /&gt;until L1 &amp;gt; L&lt;BR /&gt;del 1&lt;BR /&gt;return&lt;/P&gt;</description>
      <pubDate>Sat, 13 Jul 2024 20:39:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615492#M7822</guid>
      <dc:creator>Rainer123</dc:creator>
      <dc:date>2024-07-13T20:39:31Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615614#M7825</link>
      <description>&lt;P&gt;Mit get(1) holst du ja Werte aus dem linearen Parameterspeicher.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Falls du (bzw der zuvor abgelaufene Programmteil) den Parameterspeicher&amp;nbsp;&lt;SPAN&gt;zuvor nicht befüllt hast, kann das eventuell dazu führen, dass L=0 ist. Die Division durch 0 ist eventuell dann das Problem.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 09:43:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615614#M7825</guid>
      <dc:creator>archig</dc:creator>
      <dc:date>2024-07-15T09:43:02Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615680#M7828</link>
      <description>&lt;P&gt;Müsste ich mal probieren können, um es wirklich zu sagen. Poste das ganze GDL mal hier, dann sehen wir weiter.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jul 2024 16:19:30 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/615680#M7828</guid>
      <dc:creator>Hmooslechner</dc:creator>
      <dc:date>2024-07-15T16:19:30Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/627407#M7836</link>
      <description>&lt;P&gt;hier die GDL Datei&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2024 12:28:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/627407#M7836</guid>
      <dc:creator>Rainer123</dc:creator>
      <dc:date>2024-08-22T12:28:05Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/650994#M8025</link>
      <description>&lt;P&gt;Habe dazu noch eine Frage,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Habe div. 2D Objekte gemacht mit IF THEN&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Habe pro 2D Script Objekt dies noch eingefügt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HOTSPOT2 0,0&lt;/P&gt;
&lt;P&gt;HOTSPOT2 A,0&lt;/P&gt;
&lt;P&gt;HOTSPOT2 A,B&lt;/P&gt;
&lt;P&gt;HOTSPOT2 0,B&lt;/P&gt;
&lt;P&gt;HOTSPOT2 A/2,B/2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Und jeweils pro Objekt im 3D Script;&lt;/P&gt;
&lt;P&gt;HOTSPOT 0,0,&lt;SPAN&gt;ZZYZX&lt;/SPAN&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;HOTSPOT A,0,&lt;SPAN&gt;ZZYZX&lt;/SPAN&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;HOTSPOT A,B,&lt;SPAN&gt;ZZYZX&lt;/SPAN&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;HOTSPOT 0,B,&lt;SPAN&gt;ZZYZX&lt;/SPAN&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;HOTSPOT A/2,B/2,&lt;SPAN&gt;ZZYZX&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;HOTSPOT A/2,B/2,&lt;SPAN&gt;ZZYZX/2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Das Problem ist, dass die Hotspots nicht pro geändertem Objekt mitgeändert werden, resp. Ihre Position mitwechseln.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Dies bleibt bei allen Objekten genau gleich, wie kann ich das einstellen, dass pro geändertes Objekt im 2D und 3D die Fixpunkte dann pro geänderter Form automatisch mitkommen?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Danke im Voraus für HIlfe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2025 17:38:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/650994#M8025</guid>
      <dc:creator>Andreas81ch</dc:creator>
      <dc:date>2025-02-07T17:38:02Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651071#M8026</link>
      <description>&lt;P&gt;Wenn du in einem Objekte mehrere Variationen hast, dann musst du in diesem Fall deine Auswahl (also die IFs) im Parameterscript wiederholen, und dann die jeweilig korrekten A/B/ZZYZX Werte in die Parameter zurückschreiben.&lt;/P&gt;
&lt;P&gt;Ungefährt so:&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;if i_type = 1 then
 A = 1.5
 B = 2.34
 ZZYZX = 5.0
endif
if i_type = 2 then
 A = 0.5
 ...
endif
...

parameters \
  A = A,
  B = B,
  ZZYZXZ = ZZYZX&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2025 21:44:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651071#M8026</guid>
      <dc:creator>runxel</dc:creator>
      <dc:date>2025-02-08T21:44:43Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651373#M8027</link>
      <description>&lt;P&gt;ODER quick and dirty alles im MASTER-SCRIPT abarbeiten. Dieses wird stets durchlaufen.&lt;/P&gt;
&lt;P&gt;Nachteil: Ojekt wird langsamer.&lt;/P&gt;
&lt;P&gt;Was Du aber IMMER machen solltest ist: &lt;/P&gt;
&lt;P&gt;Gib dem HoSpos eine Nummer (ID) und lass diese HOCHZÄHLEN (&amp;nbsp;":" ist wie Zeilenumbruch)&lt;/P&gt;
&lt;P&gt;AC nimmt beim Vermaßen diese ID &lt;/P&gt;
&lt;P&gt;Kannst im 2D bzw. 3D-Script wieder mit 1 beginnen.&lt;/P&gt;
&lt;P&gt;Die Nummerierungen müssen NICHT forlaufend sein (hat großen Charme). &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;!!!Beispiel 2D-SCHIPT: &lt;/P&gt;
&lt;P&gt;unID = 1 &lt;/P&gt;
&lt;P&gt;FOR i = 0 TO 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; HOTSPOT2 i,0,unID : unID=unID+1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; TEXT2 i,0, unID&lt;/P&gt;
&lt;P&gt;NEXT i&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;unID = 999&lt;/P&gt;
&lt;P&gt;FOR i = 0 TO 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; HOTSPOT2 i, 1.00, unID : unID=unID+1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; TEXT2 i,1.00, unID&lt;/P&gt;
&lt;P&gt;NEXT i&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;!!! Gruß&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2025 11:43:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651373#M8027</guid>
      <dc:creator>Ma_SchtAC27</dc:creator>
      <dc:date>2025-02-11T11:43:56Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651374#M8028</link>
      <description>&lt;P&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/640"&gt;@runxel&lt;/a&gt;: Den Syntax "\" hinter PARAMETERS kannte ich noch nicht. Merci!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2025 11:45:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651374#M8028</guid>
      <dc:creator>Ma_SchtAC27</dc:creator>
      <dc:date>2025-02-11T11:45:31Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651375#M8029</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/67507"&gt;@Ma_SchtAC27&lt;/a&gt;&amp;nbsp; schrieb:&lt;BR /&gt;
&lt;P&gt;Syntax "\" hinter PARAMETERS...&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":erstauntes_Gesicht:"&gt;😲&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Was macht das?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2025 11:48:42 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651375#M8029</guid>
      <dc:creator>Stefan L_</dc:creator>
      <dc:date>2025-02-11T11:48:42Z</dc:date>
    </item>
    <item>
      <title>Betreff: Hotspot</title>
      <link>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651956#M8030</link>
      <description>&lt;P&gt;Der Backslash "\" ist ein Newline-Befehl, wenn man so will.&lt;/P&gt;
&lt;P&gt;Dahinter kann man ganz vernüglich die Entertaste betätigen, ohne, dass was kaputt geht.&lt;/P&gt;
&lt;P&gt;Sehr angenehm um Ordnung zu schaffen, gerade bei Befehlen wo man sonst nur an ganz ärgerlichen Positionen auf die nächste Zeile gehen kann.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Feb 2025 21:01:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Programmierung/Hotspot/m-p/651956#M8030</guid>
      <dc:creator>runxel</dc:creator>
      <dc:date>2025-02-16T21:01:25Z</dc:date>
    </item>
  </channel>
</rss>

