Jump to content

Recommended Posts

Posted

: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)

):geek: THIS CODE DOSENT WORK I DONT KNOW Y? ANY HELP I THINK IT'S GOT SOME THING TO DO WITH MY SELECTION SET./

Guest Alan Cullen
Posted

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.

Posted

THANKS ALLEN YOUR MY NEW FRIEND IF YOU WANT TO TALK CODE ILL BE HERE.:geek:

Posted

You Know Properties Actually Worked But I Juct Like Lisps So Much Even Though I Have Yet To Find One Useful

Posted

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.

  • 1 year later...
Posted
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.

Posted
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.

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...