License delivery maintenance is planned for Saturday, July 26, between 12:00 and 20:00 CEST. During this time, you may experience outages or limited availability across our services, including BIMcloud SaaS, License Delivery, Graphisoft ID (for customer and company management), Graphisoft Store, and BIMx Web Viewer. More details…

Archicad C++ API
About Archicad add-on development using the C++ API.

palette-based addon refresh

dushyant
Enthusiast

Hi,

 

Working on a palette-based addon requires reloading the project every time I have to load / unload the addon, upon re-building the .apx after some changes. This is a time-consuming process everytime I need to test a change (which happens frequently).

 

How do you guys go about this? Is there a way to check the effect of a change in an .apx without unloading/re-loading it in Archicad?

 

Thanks.

2 REPLIES 2
Viktor Kovacs
Graphisoft
Graphisoft

If you have a palette based addon, than your addon should be preloaded. It means that it is kept in memory all the time to handle the palette properly.

 

Unfortunately it means that you have to unload/reload the addon to see the new version. Personally I prefer to restart Archicad, because in this case the addon will be reloaded automatically, and it needs fewer clicks.


@Viktor Kovacs wrote:

 

Personally I prefer to restart Archicad, because in this case the addon will be reloaded automatically, and it needs fewer clicks.


Thanks for sharing that tip Viktor.