<?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 How to catch event when merge file and import point cloud? in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/645154#M10070</link>
    <description>&lt;P&gt;In&amp;nbsp;AC28.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;File -&amp;gt; Interoperability -&amp;gt; Merge -&amp;gt; Merge from File...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;File -&amp;gt; Interoperability -&amp;gt; Import Point Clouds...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to catch event when merge file or import point clouds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any ACAPI_Notification function to catch that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it is impossible, how can I merge file and point cloud using api?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need element guids when file merged.&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jan 2025 05:35:46 GMT</pubDate>
    <dc:creator>YONGWOO KIM</dc:creator>
    <dc:date>2025-01-06T05:35:46Z</dc:date>
    <item>
      <title>How to catch event when merge file and import point cloud?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/645154#M10070</link>
      <description>&lt;P&gt;In&amp;nbsp;AC28.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;File -&amp;gt; Interoperability -&amp;gt; Merge -&amp;gt; Merge from File...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;File -&amp;gt; Interoperability -&amp;gt; Import Point Clouds...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to catch event when merge file or import point clouds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any ACAPI_Notification function to catch that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If it is impossible, how can I merge file and point cloud using api?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need element guids when file merged.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 05:35:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/645154#M10070</guid>
      <dc:creator>YONGWOO KIM</dc:creator>
      <dc:date>2025-01-06T05:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch event when merge file and import point cloud?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/645192#M10072</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;&lt;BR /&gt;I'm not sure but it might be possible to catch the point cloud as a new element on import. I don't have time to test so I can only give you the link to the command to try for yourself: &lt;A href="https://graphisoft.github.io/archicad-api-devkit/group___element.html#gaa640b4d073a2e78c2eb83fe351def4ae" target="_blank"&gt;https://graphisoft.github.io/archicad-api-devkit/group___element.html#gaa640b4d073a2e78c2eb83fe351def4ae&lt;/A&gt;&lt;BR /&gt;Maybe that could help.&lt;BR /&gt;&lt;BR /&gt;For catching merged files I don't have an idea right now.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;BR /&gt;Bernd&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jan 2025 13:41:50 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/645192#M10072</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2025-01-06T13:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch event when merge file and import point cloud?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/645724#M10078</link>
      <description>&lt;P&gt;I've found something for merging:&lt;BR /&gt;Maybe &lt;A class="el" href="https://graphisoft.github.io/archicad-api-devkit/group___project_operation.html#gacc5ea19d38befe2e1da1d07f51ce2fef" target="_blank"&gt;ACAPI_ProjectOperation_CatchProjectEvent&lt;/A&gt; with&amp;nbsp;&lt;SPAN class="stringliteral"&gt;APINotify_ChangeProjectDB&lt;/SPAN&gt; could work.&lt;BR /&gt;According to the &lt;A href="http://%20https://graphisoft.github.io/archicad-api-devkit/group___project_operation.html#ga0d88e6e0f13a0b1223db20e4bdac4432" target="_self"&gt;APIProjectEventHandlerProc&lt;/A&gt; documentation, it has a parameter which indicates a Merge for APINotify_ChangeProjectDB.&lt;BR /&gt;Haven't tested it, but could be a good direction to investigate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps,&lt;BR /&gt;Bernd&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 10:57:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/645724#M10078</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2025-01-10T10:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch event when merge file and import point cloud?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/646687#M10086</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to catch the events related to File merge.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, for point cloud, I can catch the APINotify_ChangeLibrary and APINotifyElement_New events.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that there is no way to distinguish between events that occur when loading a library or creating an element.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 07:28:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/646687#M10086</guid>
      <dc:creator>YONGWOO KIM</dc:creator>
      <dc:date>2025-01-20T07:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to catch event when merge file and import point cloud?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/646764#M10092</link>
      <description>&lt;P&gt;If I understand you correctly you get both notifications APINotify_ChangeLibrary and APINotifyElement_New when you are loading a point cloud?&lt;BR /&gt;Maybe you can check which libraries are loaded or what the specific object is created (e.g. library item id or object sub type) to differentiate from other created elements.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 17:34:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-catch-event-when-merge-file-and-import-point-cloud/m-p/646764#M10092</guid>
      <dc:creator>BerndSchwarzenbacher</dc:creator>
      <dc:date>2025-01-20T17:34:09Z</dc:date>
    </item>
  </channel>
</rss>

