JONTHEPOPE Posted May 22, 2008 Posted May 22, 2008 :geek:Q ;Q ;Q (defun chgtext2() (setvar "cmdecho" 0) (setq newht (getreal "\n Enter new text height:")) (setq ss1 (ssget "x" (list 8 (cons 0 "text")))) (setq index 0) (setq num (sslength ss1)) (repeat num (setq name (ssname ss1 index)) (setq ent (entget name)) (setq oldlist (assoc 40 ent)) (setq conlist (cons (car oldlist) newht)) (setq newlist (subst conlist oldlist ent)) (entmod newlist) (setq index (1 + index)) ) (setvar "cmdecho" 0) (princ) ) THIS CODE DOSENT WORK I DONT KNOW Y? ANY HELP I THINK IT'S GOT SOME THING TO DO WITH MY SELECTION SET./ Quote
Guest Alan Cullen Posted May 22, 2008 Posted May 22, 2008 Autodesk produced a change text lisp a long time ago. It does a lot of tricky things with text..... chtext.zip You can also select your text, and use the properties window to change aspects of it. Quote
JONTHEPOPE Posted May 23, 2008 Author Posted May 23, 2008 THANKS ALLEN YOUR MY NEW FRIEND IF YOU WANT TO TALK CODE ILL BE HERE. Quote
JONTHEPOPE Posted May 23, 2008 Author Posted May 23, 2008 You Know Properties Actually Worked But I Juct Like Lisps So Much Even Though I Have Yet To Find One Useful Quote
alanjt Posted May 23, 2008 Posted May 23, 2008 i still use the extended change properties (exchprop) (slightly modified to still function) from autocad 14 bonus tools to make quick text size/style, it has tons of options for changing color/linetype/layer, polyline width and a few other things. i don't use those options anymore since commandline layer is so much quicker for making those changes and pedit width is so much faster for changing pline width (plus it will auto. convert it to a pline if it isn't). i'm not much of a fan of the properties menu (i don't care for the static menu taking up constant space) i like it when the menu goes away when i'm finished. it's really good for quick changes to text height since if you have a height set in the style menu and use properties (mo, ch) it will change the height to the set height, exchprop will not. chtext.lsp can be especially useful, i even saw a version floating around that someone had modded to work with mtext. Quote
ChrisCMU Posted November 19, 2009 Posted November 19, 2009 Autodesk produced a change text lisp a long time ago. It does a lot of tricky things with text..... [ATTACH]5999[/ATTACH] You can also select your text, and use the properties window to change aspects of it. That's pretty cool. Why doesn't it have Obliquing as an option? That's what I need to mass change too. Quote
alanjt Posted November 20, 2009 Posted November 20, 2009 That's pretty cool. Why doesn't it have Obliquing as an option? That's what I need to mass change too. Because ChText was written back in like 93. Man this is an old thread. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.