<?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: Window Marker Unit Notation in Modeling</title>
    <link>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63472#M32078</link>
    <description>If I edit the GDL I imagine I would have to add a concatenation statement to add the appropriate ' &amp;amp; " to the string somewhere in here:&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;if gs_working_unit=`Inch` then
szov=str("%.32 ffi",AC_WIDO_A_SIZE)
inc=strlen (szov)
szovv=strsub (szov,1,inc-1)
fee=strstr (szovv,"'")
szo1=strsub(szovv,1,fee-1)
szo2=strsub(szovv,fee+1,inc-1)
szoveg1=szo1+szo2

szov=str("%.32 ffi",AC_WIDO_B_SIZE)
inc=strlen (szov)
szovv=strsub (szov,1,inc-1)
fee=strstr (szovv,"'")
szo1=strsub(szovv,1,fee-1)
szo2=strsub(szovv,fee+1,inc-1)
szoveg2=szo1+szo2

szoveg=szoveg1+GS_Separator+szoveg2
endif
&lt;/PRE&gt;

but I'm not sure exactly where... probably near the bottom, like possibly szoveg1=szo1 + """ + szo2 +"'"&lt;BR /&gt;
&lt;BR /&gt;
but I'm probably wrong, any insight? &amp;lt;&amp;lt;== EDIT: I AM Wrong. I tried that and it didn't work.&lt;BR /&gt;
&lt;BR /&gt;
cheers,&lt;BR /&gt;
Dan</description>
    <pubDate>Fri, 21 Apr 2006 17:10:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2006-04-21T17:10:09Z</dc:date>
    <item>
      <title>Window Marker Unit Notation</title>
      <link>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63471#M32077</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;HI'm using the "Builder Dimension" Window marker for simple window size notation, but it doesn't displaay feet or inches; it will disaply 2-6x4 rather than 2'-6"x4', is there a way to change this option, I can't find it anywhere in the options, and my GDL knowledge isn't there enough to code this (without help anyway) does anyone have any ideas?&lt;BR /&gt;
&lt;BR /&gt;
cheers,&lt;BR /&gt;
Daniel&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 May 2023 13:08:40 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63471#M32077</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-26T13:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Window Marker Unit Notation</title>
      <link>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63472#M32078</link>
      <description>If I edit the GDL I imagine I would have to add a concatenation statement to add the appropriate ' &amp;amp; " to the string somewhere in here:&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;if gs_working_unit=`Inch` then
szov=str("%.32 ffi",AC_WIDO_A_SIZE)
inc=strlen (szov)
szovv=strsub (szov,1,inc-1)
fee=strstr (szovv,"'")
szo1=strsub(szovv,1,fee-1)
szo2=strsub(szovv,fee+1,inc-1)
szoveg1=szo1+szo2

szov=str("%.32 ffi",AC_WIDO_B_SIZE)
inc=strlen (szov)
szovv=strsub (szov,1,inc-1)
fee=strstr (szovv,"'")
szo1=strsub(szovv,1,fee-1)
szo2=strsub(szovv,fee+1,inc-1)
szoveg2=szo1+szo2

szoveg=szoveg1+GS_Separator+szoveg2
endif
&lt;/PRE&gt;

but I'm not sure exactly where... probably near the bottom, like possibly szoveg1=szo1 + """ + szo2 +"'"&lt;BR /&gt;
&lt;BR /&gt;
but I'm probably wrong, any insight? &amp;lt;&amp;lt;== EDIT: I AM Wrong. I tried that and it didn't work.&lt;BR /&gt;
&lt;BR /&gt;
cheers,&lt;BR /&gt;
Dan</description>
      <pubDate>Fri, 21 Apr 2006 17:10:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63472#M32078</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-04-21T17:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Window Marker Unit Notation</title>
      <link>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63473#M32079</link>
      <description>That's a strange bit of code there.&lt;BR /&gt;
&lt;BR /&gt;
They are going to some lengths to &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;remove&lt;E&gt;&lt;/E&gt; the foot and inch marks. The &lt;B&gt;svov&lt;/B&gt; in the second line will have the marks in it as defined by the &lt;B&gt;ffi&lt;/B&gt; format string. All that &lt;B&gt;strstr&lt;/B&gt; and &lt;B&gt;strsub&lt;/B&gt; stuff is designed to get rid of the marks.&lt;BR /&gt;
&lt;BR /&gt;
To get what you want this simply change the last line before the endif to &lt;B&gt;svoveg = svov&lt;/B&gt;.&lt;BR /&gt;
&lt;BR /&gt;
Or if you really want to clean it up just replace it all with:
&lt;PRE&gt;if gs_working_unit=`Inch` then szoveg=str("%.32 ffi",AC_WIDO_A_SIZE)&lt;/PRE&gt;

Remember to always work on a copy. Do not modify existing parts unless you are really sure of what you are doing.</description>
      <pubDate>Fri, 21 Apr 2006 21:04:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63473#M32079</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-04-21T21:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Window Marker Unit Notation</title>
      <link>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63474#M32080</link>
      <description>Thanks for the tip Matthew, after reading what you posted I realised what was going on with the code, I removed the entire If Then Statement and changed it to:&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;if gs_working_unit=`Inch` then
szov1=str("%.32 ffi",AC_WIDO_A_SIZE)
szov2=str("%.32 ffi",AC_WIDO_B_SIZE)

szoveg=szov1+GS_Separator+szov2
endif
&lt;/PRE&gt;

Thanks for all the help...&lt;BR /&gt;
Daniel</description>
      <pubDate>Wed, 26 Apr 2006 17:28:18 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Modeling/Window-Marker-Unit-Notation/m-p/63474#M32080</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-04-26T17:28:18Z</dc:date>
    </item>
  </channel>
</rss>

