tm20038175 发表于 2012-4-17 12:44:36

本帖最后由 tm20038175 于 2012-4-17 12:45 编辑

yjr111 发表于 2012-4-16 21:27 static/image/common/back.gif
试了一下,没问题啊
试试这个(defun c:test()
(while (setq ss(car(entsel"\n选择源对象")))
(command "matchprop" ss pause)
)
)

tm20038175 发表于 2012-4-17 15:18:17

顶起来。。。。。。

yjr111 发表于 2012-4-17 16:40:37

感觉你需要的是循环使用matchprop,对吧?下面可以变通使用,不过味道不太好了(defun c:test ()
(while (setq ss (car (entsel "\n选择源对象")))
    (princ "\n 选择目标对象")
    (vl-cmdf "matchprop" ss (ssget) "")
)
)

tm20038175 发表于 2012-4-17 17:05:46

谢谢啦,我明天才能测试了。。。。。。

tm20038175 发表于 2012-4-18 11:53:28

yjr111 发表于 2012-4-17 16:40 static/image/common/back.gif
感觉你需要的是循环使用matchprop,对吧?下面可以变通使用,不过味道不太好了

的确味道不同了,一声长叹!
页: 1 [2]
查看完整版本: 刷属性Bug问题