<?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 zones information lost after upgrade to AC9 in Installation &amp; update</title>
    <link>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77905#M9304</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;When opening the Archicad 6,5 project in Archicad 9 all the information in the zone stamps is lost - all the parameters (including area) are "0" or "NO NAME". &lt;BR /&gt;
Further - on our mac computers Archicad 9 keeps the original zone stamp, on PC it switches to default zone stamp regardless of the zone stamp assigned to categories.&lt;BR /&gt;
The zone stamp itself works ok when used in Archicad 9.&lt;BR /&gt;
It is a big project and I would hate to build the zones anew (put the room names, numbers, flooring etc). Any ideas, please?&lt;/T&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 22 May 2006 10:20:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2006-05-22T10:20:22Z</dc:date>
    <item>
      <title>zones information lost after upgrade to AC9</title>
      <link>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77905#M9304</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;When opening the Archicad 6,5 project in Archicad 9 all the information in the zone stamps is lost - all the parameters (including area) are "0" or "NO NAME". &lt;BR /&gt;
Further - on our mac computers Archicad 9 keeps the original zone stamp, on PC it switches to default zone stamp regardless of the zone stamp assigned to categories.&lt;BR /&gt;
The zone stamp itself works ok when used in Archicad 9.&lt;BR /&gt;
It is a big project and I would hate to build the zones anew (put the room names, numbers, flooring etc). Any ideas, please?&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 22 May 2006 10:20:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77905#M9304</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-05-22T10:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: zones information lost after upgrade to AC9</title>
      <link>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77906#M9305</link>
      <description>It sounds like AC9 doesn't like the old stamp (strange about the Mac/PC difference though). &lt;BR /&gt;
&lt;BR /&gt;
If the zones themselves are OK all you should need to do is redefine the the Zone Categories (Options menu) with a new stamp that you know to work in AC9. This should replace the old one in the correct locations and pick up all the information from the zones.</description>
      <pubDate>Mon, 22 May 2006 14:09:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77906#M9305</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-05-22T14:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: zones information lost after upgrade to AC9</title>
      <link>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77907#M9306</link>
      <description>Which zone stamp did You use in 6,5?&lt;BR /&gt;
Maybe I have one converted to newer version...&lt;BR /&gt;
(or You could send me the pla containing the zone only - through private message here - or leave me Your e-mail the same way - I will try contacting You then - maybe there is a fast way to fix the stamp)&lt;BR /&gt;
&lt;BR /&gt;
Best Regards,&lt;BR /&gt;
Piotr Dobrowolski</description>
      <pubDate>Tue, 23 May 2006 16:00:36 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77907#M9306</guid>
      <dc:creator>Piotr Dobrowolski</dc:creator>
      <dc:date>2006-05-23T16:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: zones information lost after upgrade to AC9</title>
      <link>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77908#M9307</link>
      <description>Something similar happened to me when I upgraded a Project from 6.5 to 9.&lt;BR /&gt;
I used "zone_stamp 03 65".&lt;BR /&gt;
There are two lines in its 2D Script that go like this:&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#0024ff"&gt;stn= "st_n"+STRSUB (STR (rend0, 1, 0), 2, 1)+"b"&lt;BR /&gt;
stk= "st_k"+STRSUB (STR (rend0, 1, 0), 2, 1)+"n"&lt;BR /&gt;
&lt;/FONT&gt;&lt;BR /&gt;
For some reason, ArchiCAD 9 feels this is incorrect, so it must be modified to:&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#1b00ff"&gt;stn= "st_n"+STRSUB (STR (rend0, 1, 0), &lt;/FONT&gt;&lt;FONT color="#ff003f"&gt;1&lt;/FONT&gt;&lt;FONT color="#1b00ff"&gt;, 1)+"b"&lt;/FONT&gt;&lt;BR /&gt;
&lt;FONT color="#0000ff"&gt;stk= "st_k"+STRSUB (STR (rend0, 1, 0), &lt;/FONT&gt;&lt;FONT color="#ff0036"&gt;1&lt;/FONT&gt;&lt;FONT color="#1200ff"&gt;, 1)+"n"&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
then it works.&lt;BR /&gt;
&lt;BR /&gt;
I think the difference was that in ArchiCAD 6.5, when you use the STR() command in GDL, a leading SPACE character is put at the beginning of the string resulting from the command.&lt;BR /&gt;
In ArchiCAD 9, there is no leading SPACE character, this is why you must put there '1' instead of '2'.&lt;BR /&gt;
I hope you know GDL so it makes sense to you.&lt;BR /&gt;
I hope this will be a solution for you.&lt;BR /&gt;
Laszlo</description>
      <pubDate>Wed, 24 May 2006 08:51:25 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Installation-update/zones-information-lost-after-upgrade-to-AC9/m-p/77908#M9307</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2006-05-24T08:51:25Z</dc:date>
    </item>
  </channel>
</rss>

