LABELS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 04:22 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 04:26 AM
eg if GLOB_CH_STORY_DIST>=1 then end
will not show the label if the storey is above the home storey.
John Hyland : ARINA : www.arina.biz
User ver 4 to 12 - Jumped to v22 - so many options and settings!!!
OSX 10.15.6 [Catalina] : Archicad 22 : 15" MacBook Pro 2019 [/size]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 05:02 AM
i have written a label that coverts a the height of o slab into brick coursing
& ffl measurements with the addition of a datum height
out method of drawing is that the slab is 1 storey below the storey where the brickwork sits & were the working drawing is completed
i dont seem to about to display the label on anything but its home story
i tried scripts such IF GLOB_CH_STORY_DIST=1 THEN GOSUB but could not manage to show the label on storey 1
i seemed to be able to trick into not showing anything at all by using
IF GLOB_CH_STORY_DIST<=1

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 06:14 AM
John Hyland : ARINA : www.arina.biz
User ver 4 to 12 - Jumped to v22 - so many options and settings!!!
OSX 10.15.6 [Catalina] : Archicad 22 : 15" MacBook Pro 2019 [/size]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 07:17 AM
hope were on the right wave length ive written the gdl part & loaded it
as a label. ive written many parts, like stairs were ive use the storey up storey down the manipulate the visual in the 2d script
im not sure if loading the part as a label is overriding these commands

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 07:29 AM
damien wrote:It should work if the slab is visible
in gerneral we will show the concrete slab on the storey above
John Hyland : ARINA : www.arina.biz
User ver 4 to 12 - Jumped to v22 - so many options and settings!!!
OSX 10.15.6 [Catalina] : Archicad 22 : 15" MacBook Pro 2019 [/size]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 07:55 AM
this is the script that i used the label works fine in its calculation but
remains fixed on the home story
IF GLOB_CH_STORY_DIST <=3 THEN GOSUB 10
END
10:
IF glob_context=1 THEN
label_font_name="Arial"
label_text_size=2.5
label_font_style=0
label_text_pen=3
anch=1
ENDIF
DEFINE STYLE "textstyle" label_font_name,
label_text_size, anch, label_font_style
SET STYLE "textstyle"
height=J_
brkht=(600/7)*.001
Course=height/brkht
Brk=INT (Course+0.5)
h=INPUT_HT+ffl
DEFINE STYLE 'TXT' 'ARIAL NARROW WESTERN',2.5,4,0
SET STYLE 'TXT'
h=STR((height+ffl),5,3)
Brkh = str(brk,5,0)
stringLength=stw( " FFL" +Brkh +'c ' +'( ' +h +' ) ')/1000*A_
add2 0,0.25/2
add2 -stringLength/2,0
TEXT2 0.1,0, "FFL"+Brkh +'c ' +'( ' +h +' )'
PEN 15
del 1
RECT2 -stringLength/2,-0.3,stringLength/2,0.3
HOTSPOT2 -stringLength/2,-0.3
HOTSPOT2 -stringLength/2,0.3
HOTSPOT2 stringLength/2,-0.3
HOTSPOT2 stringLength/2,0.3
RETURN

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 08:09 AM
Label shows on every storey (along with the slab) below the 4th storey above the home
EDIT I just noticed you are on v9 - from memory labels only show on the Home storey in v9
John Hyland : ARINA : www.arina.biz
User ver 4 to 12 - Jumped to v22 - so many options and settings!!!
OSX 10.15.6 [Catalina] : Archicad 22 : 15" MacBook Pro 2019 [/size]
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 08:27 AM
better start pushing for an upgrade

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2006-08-11 08:39 AM
damien wrote:Yep v10 does have its gremlins but is a solid update
thanks john
better start pushing for an upgrade
John Hyland : ARINA : www.arina.biz
User ver 4 to 12 - Jumped to v22 - so many options and settings!!!
OSX 10.15.6 [Catalina] : Archicad 22 : 15" MacBook Pro 2019 [/size]