Learn to manage BIM workflows and create professional Archicad templates with the BIM Manager Program.
2004-12-06 09:32 PM
2004-12-07 02:03 AM
! 2D SCRIPT txtsz=txtpt/2.8346 !Points to mm DEFINE STYLE 'sty1' 'Arial',txtsz,5,0 DEFINE STYLE 'sty2' 'Times',txtsz*0.8,5,2 DEFINE STYLE 'sty3' 'Times',txtsz*1.1,5,3 PARAGRAPH "par1" 1, 0, 0, 0, 1.0, 1.0 PEN 52 SET STYLE "sty1" "At last, passage paid, and luggage safe, we stood on board the schooner. " "Hoisting sail, it glided down the Acushnet river. " PEN 42 SET STYLE "sty2" "On one side, New Bedford rose in terraces of streets, their ice- covered trees all glittering in the clear, cold air. " PEN 32 "Huge hills and mountains of casks on casks were piled upon her wharves, " "and side by side the world-wandering whale ships lay silent and safely moored at last; " "while from others came a sound of carpenters and coopers, " "with blended noises of fires and forges to melt the pitch, " "all betokening that new cruises were on the start; " "that one most perilous and long voyage ended, only begins a second; " "and a second ended, only begins a third, and so on, for ever and for aye. " SET STYLE "sty3" "Such is the endlessness, yea, the intolerableness of all earthly effort." ENDPARAGRAPH TEXTBLOCK "block1" 100, 1, 0, 1.0, 1.0, 1, "par1" RICHTEXT2 0,0, "block1"Mind the quote marks.
2004-12-17 01:06 PM
2005-02-25 06:55 PM
2005-03-08 09:47 PM
2005-03-10 05:38 PM
2005-08-17 08:23 PM
MUL2 A_,A_I'm trying to create a CSI note that will allow a custom multi-line descriptor below the standard text (in this case, desc_1="Additional Descriptor(s) Here"). I can't seem to control the height of the descriptor text -- what am I doing wrong?
PEN 18
DEFINE STYLE TEXT_1 gs_text_font,2.38,3,1
SET STYLE TEXT_1
TEXT2 0,0,"01100 - "
DEFINE STYLE TEXT_2 gs_text_font,2.38,1,0
SET STYLE TEXT_2
TEXT2 0,0,note
IF add_desc THEN
DEFINE STYLE{2} TEXT_3 gs_text_font,2.38,0
PARAGRAPH "PARA" 1,0,0,0,1
SET STYLE{2} TEXT_3
desc_1
ENDPARAGRAPH
TEXTBLOCK "block1" 40,1,0,.8,1,1,"PARA"
RICHTEXT2 0,-0.004,"block1"
endif
END
2005-08-20 11:55 AM
Laura wrote:Hallo Laura,
I can't seem to control the height of the descriptor text -- what am I doing wrong?
2005-08-20 06:45 PM
2005-12-20 09:32 AM