<?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: Feisty Text in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74232#M32302</link>
    <description>A little late to the conversation, but I have a slightly similar problem.   &lt;BR /&gt;
   &lt;BR /&gt;
I want to create some text that changes size as the user changes scales. I.e: something that is 6 points regardless of the model scale. Also, I want to have the text size remain the same even if the bounding box is scaled. Currently the text is stretched / scaled the same as the bounding box is.   &lt;BR /&gt;
   
&lt;PRE&gt;define style{2}    "AC_STYLE_1" "Arial", textsize / 72 * 25.4 , 0   
   
paragraph		"AC_PRG_3"      2, 0'-0.0000", 0'-0.0000", 0'-0.0000", 3'-3.3701"   
    pen     penAttribute_3   
    set style "AC_STYLE_1"   
        cust_obj_size   
		cust_obj_text_space   
		cust_obj_member   
endparagraph   
paragraph		"AC_PRG_4"      2, 0'-0.0000", 0'-0.0000", 0'-0.0000", 3'-3.3701"   
        cust_obj_spacing   
		cust_obj_text_oc   
endparagraph   
textblock		"AC_TEXTBLOCK_2" 75-4.8216",      8, 0'-0.0000", 3'-3.3701", 3'-3.3701", 3'-3.3701",   
        "AC_PRG_3", "AC_PRG_4"   
richtext2		0'-0.0000", 0'-0.0000", "AC_TEXTBLOCK_2"&lt;/PRE&gt;   &lt;BR /&gt;
   
&lt;PRE&gt;textsize&lt;/PRE&gt; is a real number parameter.   &lt;BR /&gt;
   &lt;BR /&gt;
When I change the&lt;PRE&gt; textblock ...fixed_height&lt;/PRE&gt; from 1 to 0 the text gets huge, but does not seem to be the right parameter to change.   &lt;BR /&gt;
   &lt;BR /&gt;
Any thoughts ?</description>
    <pubDate>Fri, 06 Mar 2015 02:51:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-03-06T02:51:47Z</dc:date>
    <item>
      <title>Feisty Text</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74226#M32296</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;I'm making a GDL that will always be the same size when measured in ArchiCAD, but I can't get a piece of text to stay the same size.  No matter what I do, the letter insists on changing size when I switch to different scales.  The following are the two techniques I have tried:&lt;BR /&gt;

&lt;PRE&gt;DEFINE STYLE "AC_STYLE_1" "Arial Narrow", 8 * 25.4 * GLOB_SCALE, 5, 0
SET STYLE "AC_STYLE_1"
TEXT2 0, 0, LampLetter
&lt;/PRE&gt;

&lt;PRE&gt;DEFINE STYLE "AC_STYLE_1" "Arial Narrow", 8 * 25.4, 5, 0
SET STYLE "AC_STYLE_1"
TEXT2 0, 0, LampLetter
&lt;/PRE&gt;

I thought the version with GLOB_SCALE in it would surely work, but I get the same behavior out of each.  Does it matter that I don't have a MUL2 statement in any script?&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 23 Jan 2007 16:59:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74226#M32296</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-01-23T16:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Feisty Text</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74227#M32297</link>
      <description>Probably, it is necessary to write it so.&lt;BR /&gt;
for metric measure:&lt;BR /&gt;
DEFINE STYLE "AC_STYLE_1" "Arial Narrow", 8  / GLOB_SCALE, 5, 0&lt;BR /&gt;
and for imperial:&lt;BR /&gt;
DEFINE STYLE "AC_STYLE_1" "Arial Narrow", 8 * 25.4/72 / GLOB_SCALE, 5, 0</description>
      <pubDate>Tue, 23 Jan 2007 21:54:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74227#M32297</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-01-23T21:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Feisty Text</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74228#M32298</link>
      <description>Thank you Valerie! That is exactly what I needed.&lt;BR /&gt;
&lt;BR /&gt;
Вы Valerie! То точно я. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt;&lt;BR /&gt;
&lt;BR /&gt;
Также, не потревожьтесь о дороге, котор вы говорите или пишете английскую язык -- множество американцов не умеет как правильн поговорить английскую язык!&lt;BR /&gt;
&lt;BR /&gt;
(I used a translator too)</description>
      <pubDate>Tue, 23 Jan 2007 22:09:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74228#M32298</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-01-23T22:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: Feisty Text</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74229#M32299</link>
      <description>I have hurried. I want to be corrected.&lt;BR /&gt;
&lt;BR /&gt;
for metric measure:&lt;BR /&gt;
DEFINE STYLE "AC_STYLE_1" " Arial Narrow ", 1/GLOB_SCALE*1000, 5, 0 &lt;BR /&gt;
It means that the height of a font will be 1 meter.  &lt;BR /&gt;
&lt;BR /&gt;
for imperial: &lt;BR /&gt;
DEFINE STYLE "AC_STYLE_1" " Arial Narrow ", 1 * 25.4/GLOB_SCALE, 5, 0&lt;BR /&gt;
It means that the height of a font will be 1 inch.&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/14479i63F6F93A8932330A/image-size/large?v=v2&amp;amp;px=999" border="0" alt="FontSize.gif" title="FontSize.gif" /&gt;</description>
      <pubDate>Tue, 23 Jan 2007 23:08:02 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74229#M32299</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-01-23T23:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Feisty Text</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74230#M32300</link>
      <description>Now in the other scale.</description>
      <pubDate>Tue, 23 Jan 2007 23:26:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74230#M32300</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-01-23T23:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Feisty Text</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74231#M32301</link>
      <description>&lt;BLOCKQUOTE&gt;Valery wrote:&lt;BR /&gt;I want to be corrected.&lt;/BLOCKQUOTE&gt;

Yes.  I forgot to mention that I removed "/ 72" from the equation.</description>
      <pubDate>Tue, 23 Jan 2007 23:40:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74231#M32301</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-01-23T23:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Feisty Text</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74232#M32302</link>
      <description>A little late to the conversation, but I have a slightly similar problem.   &lt;BR /&gt;
   &lt;BR /&gt;
I want to create some text that changes size as the user changes scales. I.e: something that is 6 points regardless of the model scale. Also, I want to have the text size remain the same even if the bounding box is scaled. Currently the text is stretched / scaled the same as the bounding box is.   &lt;BR /&gt;
   
&lt;PRE&gt;define style{2}    "AC_STYLE_1" "Arial", textsize / 72 * 25.4 , 0   
   
paragraph		"AC_PRG_3"      2, 0'-0.0000", 0'-0.0000", 0'-0.0000", 3'-3.3701"   
    pen     penAttribute_3   
    set style "AC_STYLE_1"   
        cust_obj_size   
		cust_obj_text_space   
		cust_obj_member   
endparagraph   
paragraph		"AC_PRG_4"      2, 0'-0.0000", 0'-0.0000", 0'-0.0000", 3'-3.3701"   
        cust_obj_spacing   
		cust_obj_text_oc   
endparagraph   
textblock		"AC_TEXTBLOCK_2" 75-4.8216",      8, 0'-0.0000", 3'-3.3701", 3'-3.3701", 3'-3.3701",   
        "AC_PRG_3", "AC_PRG_4"   
richtext2		0'-0.0000", 0'-0.0000", "AC_TEXTBLOCK_2"&lt;/PRE&gt;   &lt;BR /&gt;
   
&lt;PRE&gt;textsize&lt;/PRE&gt; is a real number parameter.   &lt;BR /&gt;
   &lt;BR /&gt;
When I change the&lt;PRE&gt; textblock ...fixed_height&lt;/PRE&gt; from 1 to 0 the text gets huge, but does not seem to be the right parameter to change.   &lt;BR /&gt;
   &lt;BR /&gt;
Any thoughts ?</description>
      <pubDate>Fri, 06 Mar 2015 02:51:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Feisty-Text/m-p/74232#M32302</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-06T02:51:47Z</dc:date>
    </item>
  </channel>
</rss>

