yuvismahi2 wrote:I am trying to understand how does the OBJ Export
classification works, and how I can manipulate it. Could you clarify the
question a bit? Are you asking about export to wavefront (.obj) format,
or export to an Archicad library part (object)?
There is a unique dev-kit for every version of ARCHICAD. To make an
add-on work with a specific version of ARCHICAD, you must use the
correct dev-kit. If you use the AC22 dev-kit, for example, the add-on
will only work with AC22 (not 21 or 23).
Encina's add-ons have been updated for ArchiCAD 16 and are available for
download here. The update is free to registered users (and students).
The new versions will automatically recognise your existing
registration, so you only need to download and install the update.
Migra...
ljudeman wrote:How can I open this file with archicad12 on Win 7 The
file is completely empty (the content is zeroed out). You can't open it
because there is nothing to be opened.
Encina's add-ons have been updated for ArchiCAD 15 and are available for
download. The update is free to registered users (and students). The new
versions will automatically recognise your existing registration, so you
only need to download and install the update. Migration ...
Many API functions don't directly specify a target database, instead
operating on what is designated as the 'current' database. You can
change the current database by calling
ACAPI_Database_ChangeCurrentDatabase, but I strongly recommend capturing
the current database first ...
I think the comment at filler_3 is a mistake. All fields prefixed with
'filler' are only padding to maintain the structure size and byte
alignment - they never contain data and will probably be filled with
zeros by default (hence appearing to be an empty string). The listing...
ACAPI_Element_InstallElementObserver should suit your purposes. The type
of action you want to observe is APINotifyElement_Delete. The API and
documentation provide examples using this function. The only limitation
is that you need to explicitly request a notification for a ...
I haven't found any problems using DGPopUpInsertItem. Could you post a
code snippet showing how you are using the call? The parameters are:
dialId: The dialog identifier item: The index of the item in the dialog
(the target popup control) popupItem: The index of the position...