View Full Version : 2013 Multileader Arial TTF appears rough
gfreddog
2012-10-26, 08:33 PM
I have a drawing where some of the Multileaders text appears bold or heavier than others in the drawing. But when I check the properties comparing both types they are the same.
I Wblocked everything into a new file and the issue is still there.
See attached Jpeg for some clarification if I haven't confused you enough :-)
T.I.A.
Norton_cad
2012-10-26, 10:28 PM
I've noticed this error for many years, but it all plots the same weight. So I put it down to either a graphic card error, a glitch in the way the cad database forms, or act of god/flying tea pot. As it all prints fine, I just lived with it & moved on. I also noticed that sometimes the text "s t r e t c h e s" too, with again no plot effect.
JGA_o1
2012-10-29, 09:14 AM
Have you checked whether it is "floating". Try making sure that z=0
A routine I found elsewhere on the site for doing this (make sure you save your drawing first)
^C^C_qsave;_move;_all;;0,0,0;0,0,1e99;_move;_p;;0,0,0;0,0,-1e99;
The height "1e99" is apparently the ceiling at which AutoCAD objects can go, so it flattens all the objects then drops them all back to z=0.
jaberwok
2012-10-29, 03:27 PM
Have you checked whether it is "floating". Try making sure that z=0
A routine I found elsewhere on the site for doing this (make sure you save your drawing first)
^C^C_qsave;_move;_all;;0,0,0;0,0,1e99;_move;_p;;0,0,0;0,0,-1e99;
The height "1e99" is apparently the ceiling at which AutoCAD objects can go, so it flattens all the objects then drops them all back to z=0.
Right in function but wrong in detail.
"1e99" is not a ceiling value but it is so large that any discrepancy gets lost in the rounding off.
gfreddog
2012-11-02, 06:55 PM
Have you checked whether it is "floating". Try making sure that z=0
A routine I found elsewhere on the site for doing this (make sure you save your drawing first)
^C^C_qsave;_move;_all;;0,0,0;0,0,1e99;_move;_p;;0,0,0;0,0,-1e99;
The height "1e99" is apparently the ceiling at which AutoCAD objects can go, so it flattens all the objects then drops them all back to z=0.
I was thinking the same thing but I wasn't sure how to move the Multileaders to 0,0,0,0, easily
Is there a way to make
^C^C_qsave;_move;_all;;0,0,0;0,0,1e99;_move;_p;;0,0,0;0,0,-1e99;
Into a LISP? I'm still testing the waters in LISP Writing so I'm not that fluent in it yet.
TIA
jaberwok
2012-11-03, 12:36 AM
(command "QSAVE")
(command "MOVE" "ALL" "" "0,0,0" "0,0,1e99")
(command "MOVE" "ALL" "" "0,0,0" "0,0,-1e99")
add a "Defun" to name it.
gfreddog
2012-11-05, 03:12 PM
(command "QSAVE")
(command "MOVE" "ALL" "" "0,0,0" "0,0,1e99")
(command "MOVE" "ALL" "" "0,0,0" "0,0,-1e99")
add a "Defun" to name it.
John;
That did it thanks!
Norton_cad
2012-11-05, 09:53 PM
I'll call it "Flying Teapot". Thanks brother John.
jaberwok
2012-11-06, 12:32 PM
I'll call it "Flying Teapot". Thanks brother John.
:lol:
I'd a thought that MoveAll0 (MA or M0) would be more convenient. :beer:
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.