不知道是 不是这个意思
 - ;;;需要小懒人工具箱支持
- ;;;下载地址
- ;;;http://yunpan.cn/c3iAVqYptpwj9 访问密码 cc19
- ;;;QQ群: 208388011
- (defun c:tt();;;文字合并输出
- (vl-load-com)
- (setq ss (ssget (list(cons 0 "TEXT"))))
- (if (/= ss nil)
- (progn
- (setq tex (xlr_ss_ssptn ss 1))
- (setq text "")
- (foreach tx tex
- (if (= text "")
- (setq text tx)
- (setq text (strcat tx "/" text))
- )
- )
- (xlr_dttext text 1.5 3 )
- )
- )
- )
|