Summary
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
# 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")