<?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: Drawing Title in Documentation</title>
    <link>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/400378#M61802</link>
    <description>&lt;P&gt;Thanks for your answer. But I am still confused because I don't know where I should paste the code.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 Oct 2023 05:56:49 GMT</pubDate>
    <dc:creator>krab-El</dc:creator>
    <dc:date>2023-10-02T05:56:49Z</dc:date>
    <item>
      <title>Drawing Title</title>
      <link>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/399791#M61740</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello everyone&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a tricky issue to solve :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I placed one drawing in the layout and I want to show two different scales in the same drawing title. The reason why I do it this way is that sometimes I need to print the layout using different sizes (&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;A1 size: 1/100， A3 size: 1/200).&amp;nbsp; Could someone help me to solve this issue?&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for reading.&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="Screenshot 2023-09-27 111936.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/46545i805675DA62A1E212/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-09-27 111936.png" alt="Screenshot 2023-09-27 111936.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 20:35:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/399791#M61740</guid>
      <dc:creator>krab-El</dc:creator>
      <dc:date>2023-09-28T20:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Title</title>
      <link>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/399796#M61742</link>
      <description>&lt;P&gt;Coding of the title would do it,&lt;/P&gt;
&lt;P&gt;if the variable "ac_drawingScale" is in the title, that gets auto populated by the program as text i.e. 1:50&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;if ac_drawingScale # "" then

   !ac_drawingScale has been auto populated
   ax=split(ac_drawingScale,"%n:%n",aax,aay,aaz)    

      !ac_drawingScale gets split into aax = 1, aay = ":" aaz = scale, i.e. aaz = 50 as anumber

      if VARTYPE(aaz) = 1 then    

          !CHECKS IF aaz is a number variable type



          text2 0,0,"A1: SCALE=1:"+STR(aaz,1,0)+"-----A3: SCALE=1:"+STR(aaz*2,1,0)    

           !STR(aaz,1,0) turns number back to text to combine with other text, i.e. "50"

           !STR(aaz*2,1,0) doubles the number and turns number back to text to combine with other text, i.e. "100"

            !output text  A1: SCALE=1:Scale-----A3: SCALE=1:doubleScale

            !i.e.  A1: SCALE=1:50-----A3: SCALE=1:100

      endif

endif&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2023 20:37:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/399796#M61742</guid>
      <dc:creator>AllanP</dc:creator>
      <dc:date>2023-09-28T20:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Title</title>
      <link>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/400378#M61802</link>
      <description>&lt;P&gt;Thanks for your answer. But I am still confused because I don't know where I should paste the code.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2023 05:56:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/400378#M61802</guid>
      <dc:creator>krab-El</dc:creator>
      <dc:date>2023-10-02T05:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Title</title>
      <link>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/400386#M61807</link>
      <description>&lt;P&gt;Unless you do it manually with plain text, you would need to code it into your title object.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;File =&amp;gt; Libraries &amp;amp; Objects =&amp;gt; Open Object by Subtype... =&amp;gt; General GDL Object =&amp;gt; Documentation Symbol =&amp;gt; Drawing Title&lt;/EM&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your title should be listed at the above location. BUT, I assume you have not meddled with GDL before, so making the suggested modifications may not be the very practical...&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, 02 Oct 2023 07:02:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/400386#M61807</guid>
      <dc:creator>Lingwisyer</dc:creator>
      <dc:date>2023-10-02T07:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Drawing Title</title>
      <link>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/400488#M61812</link>
      <description>&lt;P&gt;Ok. Thanks for your contribution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 01:11:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Documentation/Drawing-Title/m-p/400488#M61812</guid>
      <dc:creator>krab-El</dc:creator>
      <dc:date>2023-10-03T01:11:10Z</dc:date>
    </item>
  </channel>
</rss>

