xujinhua
发表于 2012-3-4 17:33:18
学到东西。。。谢谢
露水2
发表于 2012-3-7 15:10:19
cindy_fisher 发表于 2012-2-20 15:52 static/image/common/back.gif
楼主真好,谢谢,用处很大,顺便探讨下:
选择只含有数字的文本: (ssget "x" '((0 . "text,mtext") (1 . " ...
可以啊
(defun c:test()
(setq ss (ssget "x" '((0 . "text,mtext") (1 . ""))) )
(command "move" ss "" pause pause)
)
露水2
发表于 2012-3-7 15:13:07
GamIng 发表于 2012-2-29 22:36 static/image/common/back.gif
有没有选择随层、非随层的同样线型曲线的简洁方法?
这个没研究过
puzb2001
发表于 2012-3-7 19:59:03
看了此贴,胜读十年书
cindy_fisher
发表于 2012-3-12 17:29:43
露水2 发表于 2012-3-7 15:10 static/image/common/back.gif
可以啊
(defun c:test()
(setq ss (ssget "x" '((0 . "text,mtext") (1 . ""))) )
貌似不能成功。
露水2
发表于 2012-3-17 16:00:28
本帖最后由 露水2 于 2012-3-17 16:00 编辑
cindy_fisher 发表于 2012-3-12 17:29 http://bbs.mjtd.com/static/image/common/back.gif
貌似不能成功。
(defun c:test()
(setq ss (ssget "x" '((0 . "text,mtext") (1 . "~*[~.0-9]*" ))) )
(command "move" ss "" pause pause)
)
再试试
露水2
发表于 2012-3-17 16:11:50
;只选择字母文本
(defun c:test24()
(setq ss (ssget '((0 . "text,mtext") (1 . "~*[~a-A-z-Z]*" ))) )
)
langjs
发表于 2012-3-17 16:18:15
真是好帖子啊。收藏
flytoday
发表于 2012-3-17 16:49:46
非常滴好顶上
ORCHI
发表于 2012-3-18 08:22:46
原来还有这么多参数,好东西,以前一直没发现过,都是用最基本的。