我也学学lisp,视口锁定/解锁的小程序
eobser
eobser Lv.7
2006年09月27日 09:53:51
只看楼主

;用autocad2006,以前版本的右键锁定视口菜单没了,搞了一个,可以批量锁定/解锁,大家批批。;加载后命令:vl(defun c:vl() (if (setq ents (ssget ’((0 . "VIEWPORT")))) (progn (setq orstring (getstring "\n解锁/<锁定>:")) (cond ((= orstring "u") (command "mview" "l" "off" ents ""))

;用autocad2006,以前版本的右键锁定视口菜单没了,搞了一个,可以批量锁定/解锁,大家批批。
;加载后命令:vl
(defun c:vl()
(if (setq ents (ssget ’((0 . "VIEWPORT"))))
(progn
(setq orstring (getstring "\n解锁 /<锁定>:"))
(cond
((= orstring "u") (command "mview" "l" "off" ents ""))
((= orstring "") (command "mview" "l" "on" ents ""))
)
)
)
(princ)
)
免费打赏
freefeng
2008年04月11日 15:18:15
12楼
找了好久,不知道好不好用哦
回复

相关推荐

APP内打开