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 ...
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 ...
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 insta...
Have you looked at the functions associated with
ACAPI_LibraryPart_OpenParameters? Take a look at the example project
'Element_Test', specifically the function 'Do_ShowSymbolHotspots' in
'Element_Snippets.cpp'. This uses 'ACAPI_LibraryPart_OpenParame...
Do you want this information solely for objects, i.e. instances of a
library part placed in a project? Or potentially for other elements like
walls, slabs etc?
You mentioned that there are some API functions have been
deleted/deprecated/etc. Are these functions you have already been using?
If so, it would helpful to see what you have already done - it might
help me understand what you want to do. Otherwise,...
Do you want he width, height etc for a specific type of element, e.g. a
wall, slab etc, or a generic method for any kind of element? if you just
need the bounding box of any element you could use
ACAPI_Element_CalcBounds.
I recommend starting from some of the example projects - use them to see
how the API works and then extend them a bit for experimentation. Some
good places to start for creating objects are "Element_test" and
"LibPart_Test". Both have examples for cr...