We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2007-10-03 12:31 AM - last edited on 2022-09-26 10:58 PM by Daniel Kassai
2007-10-03 03:24 AM
2007-10-03 09:01 AM
2007-10-03 11:43 PM
2012-10-15 01:34 PM
2012-10-15 02:54 PM
2022-05-17 10:04 AM
15 years later I having the same problem, but i have zero knowledge of scripting.
2022-05-17 10:05 AM
10 years later I having the same problem, but i have zero knowledge of scripting. please help.
AC24
2022-05-17 11:32 AM
If you are using version 25, then switch to zone labels instead of stamps.
You can add as many labels as you like, in any layer, at any scale.
You can even label zones in sections.
Barry.
2022-05-31 01:48 PM
The zone stamp will have its origin where the user moved it. If you draw symmetrically to the origin, it will be anchored to the middle.
Text is drawn with "paper size" height, but its coordinates are in model space. For scale-independency, you need to transform to paper size.
Illustration:
text2 0,0, "O"
mul2 GLOB_SCALE / 1000, GLOB_SCALE / 1000 ! 1 m model is now 1 mm on paper scale-independently
add2 -5, -5 ! move origin of drawing
line2 0,0,10,10
line2 0,10,10,0
del 2