<?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: Can Zones be made to write in Superscript? in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82460#M29632</link>
    <description>It worked when I tried it - thank you Paulo. I didn't use the cut-paste method but directly put in the "²" character (Alt+0178 on a Windows system. BTW, "³" is Alt+0179).&lt;BR /&gt;
&lt;BR /&gt;
Just out of interest, Laszo, what character were you using that returned a "?" &lt;BR /&gt;
&lt;BR /&gt;
It may be an encoding problem but there is also the possibility that the font you were using for the zone stamp simply didn't have a definition for that particular character. &lt;BR /&gt;
&lt;BR /&gt;
When I use - say - Arial, the superscript appears correctly. However, when I use another font which doesn't have that character defined, I get a square box instead (right side of the attached image).&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps.</description>
    <pubDate>Sat, 17 Nov 2007 09:37:39 GMT</pubDate>
    <dc:creator>vistasp</dc:creator>
    <dc:date>2007-11-17T09:37:39Z</dc:date>
    <item>
      <title>Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82455#M29627</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I want Zones to display room area in square meters, using the  shorter version of it : m2, with "2" in superscript. I also want it to be displayed in cyrillic - small cyrillic "m" is like capital latin "M".&lt;BR /&gt;
&lt;BR /&gt;
Zone stamp is Zone_Stamp_02 10 on AC10.&lt;BR /&gt;
&lt;BR /&gt;
Can you share any ideas?&lt;/T&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/14574iEADD8805A1D8E3AB/image-size/large?v=v2&amp;amp;px=999" border="0" alt="sq.jpg" title="sq.jpg" /&gt;</description>
      <pubDate>Tue, 13 Nov 2007 13:59:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82455#M29627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-13T13:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82456#M29628</link>
      <description>Here is a very good question... &lt;BR /&gt;
&lt;BR /&gt;
Anybody...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_rolleyes.gif" style="display : inline;" /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 12:33:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82456#M29628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-16T12:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82457#M29629</link>
      <description>I actually checked this but after the first look I said it is pretty long to do it.&lt;BR /&gt;
But I can explain it to you the GDL behind it.&lt;BR /&gt;
So: the format in which Area Text is written out by the Zone Stamp is acquired using a REQUEST function in GDL.&lt;BR /&gt;
Check this script from the 2D SCript of Zone_Stamp_02 11.gsm:&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#001bff"&gt;area_form = ""									! Format as set in the Preferences&lt;BR /&gt;
	rrr = request ("Area_dimension", "", area_form)&lt;BR /&gt;
	room_area	= str (area_form, Temp_CalcArea)&lt;BR /&gt;
	gross_area	= str (area_form, Temp_GrossArea)&lt;BR /&gt;
&lt;BR /&gt;
&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
The line starting with "rrr..." uses a REQUEST function to read what format is set in Project Preferences for Area dimensions and loads this info to the &lt;FONT color="#1200ff"&gt;area_form &lt;/FONT&gt;variable. So &lt;FONT color="#2400ff"&gt;area_form&lt;/FONT&gt; will contain the format of the area value. By format we mean number of characters, number of decimal places or fractions of inch, plus units of measurement, such as meters or feet-inches.&lt;BR /&gt;
The &lt;FONT color="#1200ff"&gt;room_area&lt;/FONT&gt; and &lt;FONT color="#0900ff"&gt;gross_area&lt;/FONT&gt; lines create the Text strings using this format.&lt;BR /&gt;
All the available variations that can be returned by the format tring can be found in the GDL Reference Guide in the STR command under String Functions.&lt;BR /&gt;
You would have to check whether the unit in the format string is "m2", then take apart the string into two pieces (e.g. "12.50 m2" into "12.50m" and "2") and you would have to generate the "2" with a smaller font and a bit raised relative to the main text of the dimension.&lt;BR /&gt;
So it can be done but it is not fast or easy or simple.</description>
      <pubDate>Fri, 16 Nov 2007 13:15:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82457#M29629</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-11-16T13:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82458#M29630</link>
      <description>Actually it is more simple than I expected...&lt;BR /&gt;
&lt;BR /&gt;
1. In the 2d window, insert a text box;&lt;BR /&gt;
2. In the text box, insert the symbol that you want ( for example ³ or a cyrillic one) and select it with copyclip;&lt;BR /&gt;
3. In the 2d script of the zone object, find the unit string definition (something like " m2", select the "2" and paste the symbol.&lt;BR /&gt;
4. That's it! &lt;BR /&gt;
&lt;BR /&gt;
You can do the same procedure with a custom/static area!  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_wink.gif" style="display : inline;" /&gt;</description>
      <pubDate>Fri, 16 Nov 2007 16:11:51 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82458#M29630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-16T16:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82459#M29631</link>
      <description>I see what you mean.&lt;BR /&gt;
At label 1002 of the 2D Script it defines the units like "m2", "cm2" etc.&lt;BR /&gt;
I tried this copy-paste thing you wrote about but it did not work for me.&lt;BR /&gt;
The character that was displayed was a question mark or some other strange character.&lt;BR /&gt;
Could this be some character coding problem?&lt;BR /&gt;
Would be nice if it worked because it is a pretty good and simple solution.</description>
      <pubDate>Fri, 16 Nov 2007 22:53:16 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82459#M29631</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-11-16T22:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82460#M29632</link>
      <description>It worked when I tried it - thank you Paulo. I didn't use the cut-paste method but directly put in the "²" character (Alt+0178 on a Windows system. BTW, "³" is Alt+0179).&lt;BR /&gt;
&lt;BR /&gt;
Just out of interest, Laszo, what character were you using that returned a "?" &lt;BR /&gt;
&lt;BR /&gt;
It may be an encoding problem but there is also the possibility that the font you were using for the zone stamp simply didn't have a definition for that particular character. &lt;BR /&gt;
&lt;BR /&gt;
When I use - say - Arial, the superscript appears correctly. However, when I use another font which doesn't have that character defined, I get a square box instead (right side of the attached image).&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps.</description>
      <pubDate>Sat, 17 Nov 2007 09:37:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82460#M29632</guid>
      <dc:creator>vistasp</dc:creator>
      <dc:date>2007-11-17T09:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82461#M29633</link>
      <description>One thing cropped up during this issue which I don't understand. Actually there are lots of things I don't understand about GDL but... &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_wink.gif" style="display : inline;" /&gt;&lt;BR /&gt;
&lt;BR /&gt;
In the 2D script of the area units of the zone stamp, why is mm2 given twice?  Additionally, in the volume units, how come there are no cubic feet or cubic inches?&lt;BR /&gt;
&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;1002:                                           !*** Area unit strings

   if strstr (form, "sqm") then unit = " m2"
   if strstr (form, "sqcm") then unit = " cm2"
   if strstr (form, "sqmm") then unit = " mm2"
   if strstr (form, "sqmm") then unit = " mm2"
   if strstr (form, "sqf") then unit = " sq ft"
   if strstr (form, "sqi") then unit = " sq inch"

return

1003:                                           !*** Volume unit strings

   if strstr (form, "cum") then unit = " m3"
   if strstr (form, "cucm") then unit = " cm3"
   if strstr (form, "cumm") then unit = " mm3"

return
&lt;/PRE&gt;</description>
      <pubDate>Sat, 17 Nov 2007 09:58:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82461#M29633</guid>
      <dc:creator>vistasp</dc:creator>
      <dc:date>2007-11-17T09:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82462#M29634</link>
      <description>You're welcome Vistasp.&lt;BR /&gt;
&lt;BR /&gt;
I agree with you with the encoding problem that Laszo is experiencing...&lt;BR /&gt;
&lt;BR /&gt;
I tried this with arial font, but I think that if the symbol appears correctly in the 2d it should work when pasted in another place, shouldn't it?...</description>
      <pubDate>Sat, 17 Nov 2007 10:02:47 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82462#M29634</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-17T10:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82463#M29635</link>
      <description>Thank you very much, guys! &lt;BR /&gt;
I will try it right away and post the results.</description>
      <pubDate>Sat, 17 Nov 2007 10:47:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82463#M29635</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-17T10:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82464#M29636</link>
      <description>&lt;BLOCKQUOTE&gt;and you would have to generate the "2" with a smaller font and a bit raised relative to the main text of the dimension. &lt;/BLOCKQUOTE&gt;

this is the only reliable approach AFAIK. &lt;BR /&gt;
&lt;BR /&gt;
Any use of special characters is prone to errors due to different coding of fonts (as you have already discovered anyway).</description>
      <pubDate>Sat, 17 Nov 2007 11:05:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82464#M29636</guid>
      <dc:creator>Rob</dc:creator>
      <dc:date>2007-11-17T11:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82465#M29637</link>
      <description>&lt;BLOCKQUOTE&gt;vistasp wrote:&lt;BR /&gt;It worked when I tried it - thank you Paulo. I didn't use the cut-paste method but directly put in the "²" character (Alt+0178 on a Windows system. BTW, "³" is Alt+0179).&lt;BR /&gt;
&lt;BR /&gt;
Just out of interest, Laszo, what character were you using that returned a "?" 
&lt;/BLOCKQUOTE&gt;

I did what Paulo wrote: went into the Character Map, selected the Superscript Two character, copied it onto the Clipboard and pasted it into the GDL. The ? character appeared only. I also tried entering ALT+0178 into the GDL Script and that did not work either.&lt;BR /&gt;
I have English Windows XP SP2, that may be related.&lt;BR /&gt;
SO I guess you guys are lucky it works on your systems.</description>
      <pubDate>Sat, 17 Nov 2007 11:36:27 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82465#M29637</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-11-17T11:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82466#M29638</link>
      <description>&lt;BLOCKQUOTE&gt;vistasp wrote:&lt;BR /&gt;One thing cropped up during this issue which I don't understand. Actually there are lots of things I don't understand about GDL but... &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_wink.gif" style="display : inline;" /&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;1002:                                           !*** Area unit strings

   if strstr (form, "sqm") then unit = " m2"
   if strstr (form, "sqcm") then unit = " cm2"
   if strstr (form, "sqmm") then unit = " mm2"
   if strstr (form, "sqmm") then unit = " mm2"
   if strstr (form, "sqf") then unit = " sq ft"
   if strstr (form, "sqi") then unit = " sq inch"

return

1003:                                           !*** Volume unit strings

   if strstr (form, "cum") then unit = " m3"
   if strstr (form, "cucm") then unit = " cm3"
   if strstr (form, "cumm") then unit = " mm3"

return
&lt;/PRE&gt;

In the 2D script of the area units of the zone stamp, why is mm2 given twice?  Additionally, in the volume units, how come there are no cubic feet or cubic inches?
&lt;/BLOCKQUOTE&gt;

In both cases, the answer is: Probably there is no special reason except programmer error.</description>
      <pubDate>Sat, 17 Nov 2007 11:39:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82466#M29638</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-11-17T11:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82467#M29639</link>
      <description>&lt;BLOCKQUOTE&gt;laszlonagy wrote:&lt;BR /&gt;I have English Windows XP SP2, that may be related.&lt;BR /&gt;
SO I guess you guys are lucky it works on your systems.&lt;/BLOCKQUOTE&gt;

Hi Laszlo, This is an intriguing problem...&lt;BR /&gt;
&lt;BR /&gt;
I'm using the English XP-SP2 too. Is your zone stamp using some font &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;&lt;FONT color="#ff0000"&gt;other&lt;/FONT&gt;&lt;E&gt;&lt;/E&gt; than a standard one like Arial/Times New Roman? Also, do you get the same result with Paulo's modified stamp?&lt;BR /&gt;
&lt;BR /&gt;
One last shot. In plain old notepad, when you hold down ALT and type 0178. Do you get "²" or the same question mark?</description>
      <pubDate>Sat, 17 Nov 2007 13:17:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82467#M29639</guid>
      <dc:creator>vistasp</dc:creator>
      <dc:date>2007-11-17T13:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82468#M29640</link>
      <description>&lt;BLOCKQUOTE&gt;vistasp wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;laszlonagy wrote:&lt;BR /&gt;I have English Windows XP SP2, that may be related.&lt;BR /&gt;
SO I guess you guys are lucky it works on your systems.&lt;/BLOCKQUOTE&gt;

Hi Laszlo, This is an intriguing problem...&lt;BR /&gt;
&lt;BR /&gt;
I'm using the English XP-SP2 too. Is your zone stamp using some font &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;&lt;FONT color="#ff0000"&gt;other&lt;/FONT&gt;&lt;E&gt;&lt;/E&gt; than a standard one like Arial/Times New Roman? Also, do you get the same result with Paulo's modified stamp?&lt;BR /&gt;
&lt;BR /&gt;
One last shot. In plain old notepad, when you hold down ALT and type 0178. Do you get "²" or the same question mark?&lt;/BLOCKQUOTE&gt;

I tried it with Arial, Times New Roman, it does not work.&lt;BR /&gt;
In Notepad, if I enter ALT+0178, then the same wrong character appears.&lt;BR /&gt;
If I go to Character Map, copy the Superscript Two character and paste it into  Notepad, then the correct superscript 2 appears.&lt;BR /&gt;
Pretty strange stuff.</description>
      <pubDate>Sat, 17 Nov 2007 16:19:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82468#M29640</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-11-17T16:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82469#M29641</link>
      <description>To get superscript, you have to use some RICHTEXT2 statements, which I don't like.&lt;BR /&gt;
Here is a quick workaround which gives the same result. The few changes are indicated in 2D script.&lt;BR /&gt;
&lt;BR /&gt;
About copy/paste issues, i would not trust this solution. Anyway it does not work for me.</description>
      <pubDate>Sat, 17 Nov 2007 17:08:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82469#M29641</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-17T17:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82470#M29642</link>
      <description>Thank you, Olivier! I tried your Zone stamp and it worked like a charm! &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt; &lt;BR /&gt;
 &lt;BR /&gt;
I just had to replace the letters for the sq.m. with a small Cyrillic "m"! I attach the changed stamp for the Cyrillic writing users:</description>
      <pubDate>Sun, 18 Nov 2007 12:51:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82470#M29642</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-18T12:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82471#M29643</link>
      <description>Glad to know it worked Kliment.  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_smile.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
...Just wanted some feedback from GS to explain that encoding problem on the GDL script... It's really weird...  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_confused.gif" style="display : inline;" /&gt;</description>
      <pubDate>Mon, 19 Nov 2007 10:18:44 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82471#M29643</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-19T10:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82472#M29644</link>
      <description>I tried Olivier's object.&lt;BR /&gt;
Here is the result I got.&lt;BR /&gt;
Weird, maybe it is my system.&lt;BR /&gt;
It is an English XP SP2, but some of the settings are Hungarian regional settings. Could this be related?&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/8752i1B1EC824F7E60E8F/image-size/large?v=v2&amp;amp;px=999" border="0" alt="ZoneSuperScriptTwp.png" title="ZoneSuperScriptTwp.png" /&gt;</description>
      <pubDate>Mon, 19 Nov 2007 11:34:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82472#M29644</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-11-19T11:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82473#M29645</link>
      <description>Hi Laszlo &amp;amp; Kliment,&lt;BR /&gt;
&lt;BR /&gt;
My workaround is a bit dirty, sorry, i made it in a hurry. Laszlo, what if you open the part, reinitialise parameters and save as?&lt;BR /&gt;
I notice that the Zone_Stamp_02 11 has some improvements. I will look at it to write something more clean and parametric.</description>
      <pubDate>Mon, 19 Nov 2007 12:29:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82473#M29645</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-11-19T12:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Can Zones be made to write in Superscript?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82474#M29646</link>
      <description>Check the attached image.&lt;BR /&gt;
It is correct in the Settings Dialog preview, and incorrect on the Floor Plan.&lt;BR /&gt;
&lt;BR /&gt;
However: I did a New &amp;amp; Reset and it fixed it. Now everything is fine on my machine, too.</description>
      <pubDate>Mon, 19 Nov 2007 13:54:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Can-Zones-be-made-to-write-in-Superscript/m-p/82474#M29646</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-11-19T13:54:10Z</dc:date>
    </item>
  </channel>
</rss>

