<?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: Using AddOn in 3D in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362829#M1264</link>
    <description>&lt;P&gt;Honestly no, I didnt. But I'm not an architect, just a developer &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But I think that tool wouldn't suffice. We also want to check for all multiples of 90° or 45° and also have the option to enter a project offset. While you could manually put in all those values, it would be easier to solve this problem with an addon.&lt;/P&gt;&lt;P&gt;But thanks for your input &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Nov 2022 09:48:01 GMT</pubDate>
    <dc:creator>Dayiz</dc:creator>
    <dc:date>2022-11-22T09:48:01Z</dc:date>
    <item>
      <title>Using AddOn in 3D</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362743#M1260</link>
      <description>&lt;P&gt;Hello everyone!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm currently trying to write an AddOn which selects all tilted Walls in a project.&lt;/P&gt;&lt;P&gt;I managed to get the functionality running, but i'm only able to use the AddOn in 2D view, but as soon as i go in 3D, (e.g.: 3D Generic Perspective), the AddOn is greyed out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this the general behavior or is there something I'm missing? Our&amp;nbsp;architects need it in 3D view.&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Dayiz&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 16:15:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362743#M1260</guid>
      <dc:creator>Dayiz</dc:creator>
      <dc:date>2022-11-21T16:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using AddOn in 3D</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362787#M1261</link>
      <description>&lt;P&gt;You do know you can use Find &amp;amp; Select for this?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-11-21 at 23.02.39.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/31826i1FE0737022E51BA1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-11-21 at 23.02.39.png" alt="Screenshot 2022-11-21 at 23.02.39.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Nov 2022 23:04:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362787#M1261</guid>
      <dc:creator>DGSketcher</dc:creator>
      <dc:date>2022-11-21T23:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using AddOn in 3D</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362823#M1262</link>
      <description>&lt;P&gt;Hi Dayiz,&lt;BR /&gt;&lt;BR /&gt;Are you talking about the menu item becoming gray?&lt;BR /&gt;Then I think you are looking for the menu control codes. For 3D views you can use "^E3" like in this example:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;'STR#'&lt;/SPAN&gt; &lt;SPAN class=""&gt;32500&lt;/SPAN&gt; &lt;SPAN class=""&gt;"Menu string"&lt;/SPAN&gt; {
&lt;SPAN class=""&gt;/* [  1] */&lt;/SPAN&gt;     &lt;SPAN class=""&gt;"This would be enabled also in 3D views^E3"&lt;/SPAN&gt;
}&lt;/PRE&gt;&lt;P&gt;You can find more details about it on this documentation page: &lt;A href="https://archicadapi.Graphisoft.com/documentation/required-resources" target="_blank" rel="noopener"&gt;https://archicadapi.Graphisoft.com/documentation/required-resources&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Or in case you are creating a palette, you will need something like this&lt;/P&gt;&lt;PRE&gt;    GSErrCode err = &lt;SPAN class=""&gt;ACAPI_RegisterModelessWindow&lt;/SPAN&gt; (paletteRefId, PaletteAPIControlCallBack,
                                                  &lt;SPAN class=""&gt;API_PalEnabled_FloorPlan&lt;/SPAN&gt; + &lt;SPAN class=""&gt;API_PalEnabled_3D&lt;BR /&gt;                                                   &lt;/SPAN&gt;+ &lt;SPAN class=""&gt;API_PalEnabled_DocumentFrom3D,&lt;BR /&gt;                                                  &lt;/SPAN&gt;GSGuid2APIGuid (paletteGuid));&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;(Details here: &lt;A href="https://archicadapi.Graphisoft.com/documentation/acapi_registermodelesswindow" target="_blank" rel="noopener"&gt;https://archicadapi.Graphisoft.com/documentation/acapi_registermodelesswindow&lt;/A&gt;)&lt;BR /&gt;&lt;BR /&gt;Best,&lt;BR /&gt;Bernd&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 07:40:30 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362823#M1262</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2022-11-22T07:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using AddOn in 3D</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362828#M1263</link>
      <description>&lt;P&gt;Thank you very much, this is what I was looking for &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 09:44:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362828#M1263</guid>
      <dc:creator>Dayiz</dc:creator>
      <dc:date>2022-11-22T09:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using AddOn in 3D</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362829#M1264</link>
      <description>&lt;P&gt;Honestly no, I didnt. But I'm not an architect, just a developer &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;But I think that tool wouldn't suffice. We also want to check for all multiples of 90° or 45° and also have the option to enter a project offset. While you could manually put in all those values, it would be easier to solve this problem with an addon.&lt;/P&gt;&lt;P&gt;But thanks for your input &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Nov 2022 09:48:01 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Using-AddOn-in-3D/m-p/362829#M1264</guid>
      <dc:creator>Dayiz</dc:creator>
      <dc:date>2022-11-22T09:48:01Z</dc:date>
    </item>
  </channel>
</rss>

