<?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 GDL - different 2d view according to scale? in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387498#M44067</link>
    <description>&lt;P&gt;Is there a way to GDL code a 2d view in a way that it becomes automatically different according to the scale?&lt;/P&gt;&lt;P&gt;like for example if below 1:50 = view 1&lt;/P&gt;&lt;P&gt;if above 1:50 and below 1:100 = view 2&lt;/P&gt;&lt;P&gt;above 1:100 = view 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;same way as you have with model view options objects detail level?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bawar&lt;/P&gt;</description>
    <pubDate>Fri, 14 Jul 2023 07:00:43 GMT</pubDate>
    <dc:creator>Bawar Tanay</dc:creator>
    <dc:date>2023-07-14T07:00:43Z</dc:date>
    <item>
      <title>GDL - different 2d view according to scale?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387498#M44067</link>
      <description>&lt;P&gt;Is there a way to GDL code a 2d view in a way that it becomes automatically different according to the scale?&lt;/P&gt;&lt;P&gt;like for example if below 1:50 = view 1&lt;/P&gt;&lt;P&gt;if above 1:50 and below 1:100 = view 2&lt;/P&gt;&lt;P&gt;above 1:100 = view 3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;same way as you have with model view options objects detail level?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bawar&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 07:00:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387498#M44067</guid>
      <dc:creator>Bawar Tanay</dc:creator>
      <dc:date>2023-07-14T07:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: GDL - different 2d view according to scale?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387501#M44068</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;one way:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;IF GLOB_SCALE &amp;lt;= 50 THEN
     ! view1
ELSE
     IF GLOB_SCALE &amp;lt;= 100 THEN
          ! view2
     ELSE
          ! view3
     ENDIF
ENDIF&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;another way would be&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;IF GLOB_SCALE &amp;lt;= 50 THEN
     ! view1
ENDIF
IF GLOB_SCALE &amp;gt; 50 AND GLOB_SCALE &amp;lt;= 100 THEN
     ! view2
ENDIF
IF GLOB_SCALE &amp;gt; 100 THEN
     ! view3
ENDIF&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 14 Jul 2023 07:11:16 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387501#M44068</guid>
      <dc:creator>Xandros</dc:creator>
      <dc:date>2023-07-14T07:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: GDL - different 2d view according to scale?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387509#M44069</link>
      <description>&lt;P&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/64945"&gt;@Xandros&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you are simply the best &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;used the first method. i am a beginner with gdl but it is quite satisfying. that it works:D&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you have tips they are welcome:D&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 07:48:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387509#M44069</guid>
      <dc:creator>Bawar Tanay</dc:creator>
      <dc:date>2023-07-14T07:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: GDL - different 2d view according to scale?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387511#M44070</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/31876"&gt;@Bawar Tanay&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;if you have tips they are welcome:D&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Horse 11 in the fifth race at Ascot.&lt;/P&gt;
&lt;P&gt;It's a sure thing. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry I couldn't resist.&lt;/P&gt;
&lt;P&gt;I was also going to say - "quit while your ahead". &lt;span class="lia-unicode-emoji" title=":rolling_on_the_floor_laughing:"&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, 14 Jul 2023 07:57:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387511#M44070</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-07-14T07:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: GDL - different 2d view according to scale?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387512#M44071</link>
      <description>&lt;P&gt;Hahahahaha&lt;/P&gt;&lt;P&gt;Will share the price money with you, or split the losing &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Quitting is not an option hahaha&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it works quite great, love the logic behind GDL, but there is a lot of learning for me to do.&lt;/P&gt;&lt;P&gt;Especially Graphic User Interface – I just don't understand how that works or the macros for example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, I figured it is important to sketch the outcome you want&lt;/P&gt;&lt;P&gt;and write all the requirements of that object before you start coding.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It makes life easier.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 08:05:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387512#M44071</guid>
      <dc:creator>Bawar Tanay</dc:creator>
      <dc:date>2023-07-14T08:05:44Z</dc:date>
    </item>
    <item>
      <title>Re: GDL - different 2d view according to scale?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387517#M44072</link>
      <description>&lt;P&gt;GDL is quite simple yet quite complex at the same time.&lt;/P&gt;
&lt;P&gt;The best investment I ever made was the GDL COOKBOOK 3 by David Nicholson-Cole.&lt;/P&gt;
&lt;P&gt;It is very old (so not up to date) and you can't purchase it any more.&lt;/P&gt;
&lt;P&gt;But if you Google it you will find a PDF version (4 which is a little more up to date).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The basics in the book are still all applicable - it just doesn't include some of the newer commands.&lt;/P&gt;
&lt;P&gt;It has a few bits on the user interface.&lt;/P&gt;
&lt;P&gt;I still refer to it some 20 odd years after it was published.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 08:15:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387517#M44072</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-07-14T08:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: GDL - different 2d view according to scale?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387524#M44073</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/31876"&gt;@Bawar Tanay&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you are simply the best &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;pretty sure, I'm not &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; but i'm glad to be of help&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/31876"&gt;@Bawar Tanay&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you have tips they are welcome:D&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;besides bets on horseracing i basically use 4 different sources &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;opening random objects in ArchiCAD (select an object and Ctrl + Shift + O) and try understanding how it was written&lt;UL&gt;&lt;LI&gt;you can find out how GS did the sheep easter egg in the change marker tool &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;ArchiCAD GDL Reference&lt;UL&gt;&lt;LI&gt;check out the style guide&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://www.selfgdl.de/" target="_blank" rel="noopener"&gt;https://www.selfgdl.de/&lt;/A&gt; but it's in german&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://gdl.graphisoft.com/" target="_blank"&gt;https://gdl.graphisoft.com/&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 09:04:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-different-2d-view-according-to-scale/m-p/387524#M44073</guid>
      <dc:creator>Xandros</dc:creator>
      <dc:date>2023-07-14T09:04:32Z</dc:date>
    </item>
  </channel>
</rss>

