Is there a setvar or something similar that I can set to force all mtext to
conform to what I want... Or a list routine that I can run
Thanx
If the text is all on the same layer just change the color of that layer.
Bob
_FILTER
ADD SELECTED OBJECT then pick an mText
in the textbox, DELETE whatever isn't common to what you want to select (in your case, everything except OBJECT = MTEXT)
APPLY
type ALL then hit ENTER
All mText will be selected and you can change the layer in the LAYERS control on the toolbar - change the color on the COLORS control or text size on the PROPERTIES panel.
another way...
QSELECT
set OBJECT TYPE to mText
set OPERATOR to SELECT ALL
dot INCLUDE IN NEW SELECTION SET and
uncheck APPEND TO CURRENT SELECTION SET
hit OK
this will highlight all the mText - from there, you can change stuff as above.
--------------= Posted using GrabIt =----------------
------= Binary Usenet downloading made easy =---------
-= Get GrabIt for free from http://www.shemes.com/ =-
Thanks for all the suggestions... Unfortunately none of them worked
I finally decided I'd go back to the old days and attack the database...
dxfout, then used windows notepad to search and replace as needed... A lot
faster than text editing each piece of mtext... (maybe not as fast as somebody
probably knows aout there)
If I listed the text I would get something like This:
"{\C174;\lSTEP IN L26 CLG. SLAB}"
in notepad I would search and remove: "{\C174;\l" and "}"
reducing the text to: "STEP IN L26 CLG. SLAB"
then the layer would determine the colour "bylayer"
again, thanks.