December 17, 2020
by Viktor Kovacs
modified at January 5, 2021

Archicad Maze Generator Add-On Tutorial – Part 3

In the previous parts of this tutorial series we’ve learned how to create BIM elements, and a very simple dialog. The annoying thing about the dialog is that it keeps using the default data, and doesn’t remember the previous settings. In this part we will solve this issue. The code…


December 8, 2020
by Viktor Kovacs
modified at December 17, 2020

Archicad Maze Generator Add-On Tutorial – Part 1

This tutorial series will guide you through the process of creating an Archicad Add-On. The goal is to write a fully functional Add-On for Archicad that generates a random maze using real BIM elements. The code for this tutorial is available here. The tutorial is divided into multiple parts: Part…


December 3, 2020
by Viktor Kovacs
modified at December 17, 2020

Archicad Maze Generator Add-On Tutorial – Part 2

In the previous part of this tutorial series we’ve learned how to create BIM elements in Archicad, but we used hard-wired values for settings. In this part we will create a user interface to allow users to define maze generation settings. The code for this tutorial is available here. The…


March 16, 2020
by Tibor Lorántfy
modified at June 23, 2021

How to get MDID for my Add-On?

All add-ons must have a resource named ‘MDID’ with a resource ID of 32500. This resource defines the unique ID of the add-on.The ‘MDID’ is composed from two parts: Developer ID: the ID of the developer, given by GRAPHISOFT after a successfull registration. Local ID: the ID of the add-on,…


September 11, 2019
by Tibor Lorántfy
modified at June 23, 2021

Browser control in ARCHICAD and JavaScript connection

Since ARCHICAD 23 the Dialog Manager modul was extended with a Browser control. The Browser control uses the Chromium Embedded Framework (CEF). Using this control an embedded browser can be implemented inside ARCHICAD, which can load any site from a given URL. Using JavaScript the loaded site can communicate with…