We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2010-07-16 05:03 PM
n = REQUEST("Floor_Plan_Option", "", modelview) IF (modelview = 0) THEN RECT2 0,0, 1,1 ENDIF IF (modelview = 1) THEN CIRCLE2 0,0, 1 ENDIF IF (modelview = 2) THEN LINE2 0,0, 1,1 ENDIF
2010-07-16 09:39 PM
2010-07-17 02:10 PM
derekjackson wrote:The easiest thing to do in this case is to link your object behavior to scale changes using the global variable "GLOB_SCALE". You can this way link different scales to different detailing levels. For example 1:200 and up simple outline, 1:100 symbolic representation, 1:50 and under detailed and colour
Hi,
I've been tasked with creating an object that responds to different styles of plan. For example, in a simple GA plan, the object just needs to be represented by a simple outline, but in a presentation quality plan, it needs to use full colour, extra detail, etc.
2010-07-19 12:29 PM
2010-07-19 12:45 PM
derekjackson wrote:Derek:
Although I suppose we could predefine similar scales, for example '1:100 Technical', '1:100 Graphic', '1:50 Technical', '1:50 Graphic', etc. Would this work, or does GLOB_SCALE only look at the actual number (ie 100 or 50 in these cases), so it wouldn't be able to tell the difference between Technical or Graphic?