2011-02-01 12:03 AM
2011-02-02 03:39 PM
2011-02-02 03:47 PM
2011-02-02 08:43 PM
2011-02-03 11:44 AM
2011-02-03 02:01 PM
Matthew wrote:Which would not be what you want anyway, as the 3D text is always outline text.
I just tried all possible permutations and it seems to be impossible to get the panel ID to appear in plan. Even with a Project2 statement. The 3D script won't get the value of GLOB_ID if GLOB_CONTEXT = 2.
2011-02-03 03:38 PM
David wrote:It was just a fall back option, but you can get filled text in plan by adjusting the Project2{2} arguments. Something like:Matthew wrote:Which would not be what you want anyway, as the 3D text is always outline text.
I just tried all possible permutations and it seems to be impossible to get the panel ID to appear in plan. Even with a Project2 statement. The 3D script won't get the value of GLOB_ID if GLOB_CONTEXT = 2.
Zsolt:Yes! Thanks Zsolt for all your attention and help here on the forums. Your participation is noticed and much appreciated.
Thanks for letting us know that this is now on the "To Do" list.
David
2011-02-04 02:50 PM
Matthew wrote:Matthew:David wrote:It was just a fall back option, but you can get filled text in plan by adjusting the Project2{2} arguments. Something like:Matthew wrote:Which would not be what you want anyway, as the 3D text is always outline text.
I just tried all possible permutations and it seems to be impossible to get the panel ID to appear in plan. Even with a Project2 statement. The 3D script won't get the value of GLOB_ID if GLOB_CONTEXT = 2.
FILL "Solid Fill"
Project2{2} 3, 270, 3
Pen 4 DEFINE STYLE DMA Optima, 10, 7, 1 Set Style "DMA" Text .25", 0, "DVM"2D Script:
FILL "Solid Fill" Project2{2} 3, 270, 3Is there some other code I am missing?
2011-02-04 06:24 PM
David wrote:You need to set a material in 3D to provide the fill. It's easy to overlook. There are a few ways to tweak it, but knowing your skill level these should be obvious to you.
I gave this a try, but still got the outline text in the 2D Window.
3D Script:Pen 4 DEFINE STYLE DMA Optima, 10, 7, 1 Set Style "DMA" Text .25", 0, "DVM"2D Script:FILL "Solid Fill" Project2{2} 3, 270, 3Is there some other code I am missing?
David
IF GLOB_CONTEXT = 2 THEN DEFINE STYLE "text_3D" "Arial", 2.5*A_, 5, 0 STYLE "text_3D" addx open_wd*0.5 ! the transforms are to place the text to align with the door rotz -gs_open_2D ! so much easier than a door in a regular wall add -leaf_wd*0.5, -0.0035*GLOB_SCALE, 0 MATERIAL text_mat PEN text_pen Text 0.001, 0, door_ID del 3 END ENDIF
2011-02-05 01:19 PM
Matthew wrote:Yes, that was it.
You need to set a material in 3D to provide the fill. It's easy to overlook.
Matthew wrote:Yes. As it turns out, you can have the quotes or not in either Define Style or Set Style commands, works with any combination.
BTW: Is your DEFINE STYLE working without the quotation marks?