Goodies Archicad 27 ~repack~ Access

Goodies for ARCHICAD 27 — Practical Guide and Workflow Enhancements

Summary

  1. Run property-set script to tag elements with discipline and trade.
  2. Use company IFC template to export with required property mapping.
  3. Validate in IFC viewer and upload to coordination hub.

Have you found a hidden goodie in Archicad 27? Let me know in the comments below! goodies archicad 27

Construction Simulation: Links model elements to a task list to simulate the building process (Windows only). Installation and Usage Tips Goodies for ARCHICAD 27 — Practical Guide and

You can save this script as a palette button using the Script Manager goodie (free download from Graphisoft). Run property-set script to tag elements with discipline

Example Python Goodie: Auto-Place Zones by Name

# A simple goodie that places zones on all rooms named "Office"
import Archicad
acc = Archicad.Connection()
elements = acc.GetElementsByType("Zone")
for elem in elements:
    if elem.property["Name"] == "Office":
        acc.PlaceZone(elem.location, "Office Zone Template")