2006-05-22 07:55 PM
2006-05-22 08:03 PM
2006-05-22 09:16 PM
2006-05-22 09:40 PM
TurboGlider wrote:That's why I asked for a sketch.
Did you understand what I'm searching for? I'm not using my english daily so it could sometimes be hard to understand me.
2006-05-23 02:07 AM
2006-05-23 12:00 PM
2006-05-23 12:03 PM
TurboGlider wrote:GLOB_CONTEXT sounds like what you are after.
Thanks alot!
But another question. I have seen a command or status in ArchiCad so I could present different drawings depending on what view I show.
Like
IF viewport = "Section/Elevation" THEN
...
...
ELSE IF viewport = "Bills of material" THEN
...
ENDIF
What command / status should I look for?
2006-05-23 10:01 PM
2006-06-22 07:40 PM
IF endcut = 'square' THEN endcode = '01' ELSE endcode = '02' ENDIF idstring = width + depth + length + endcodeThis way the parameters that make each piece different create a "unique" code. This unique code was used with a REF COMPONENT statement in the properties script along with an element list that generated a piece count, piece description and a 2D drawing of the piece.
2006-06-23 02:52 PM
This way the parameters that make each piece different create a "unique" code. This unique code was used with a REF COMPONENT statement in the properties script along with an element list that generated a piece count, piece description and a 2D drawing of the piece.Sean, could you please give us an example of the use of the REF COMPONENT command in use to produce a piece count and piece description.