Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Lisp error...
(defun c:zw (/ pt1 pt2) (if (and (setq pt1 (getpoint "\nSelect First Window Point: ")) (setq pt1 (osnap pt1 "_end")) (setq pt2 (getpoint "\nSelect Second Window Point: ")) (setq pt2 (osnap pt2 "_end")) ) (command "._zoom" "_w" "_non" pt1 "_non" pt2) ; end zoom (command "_.pspace") (command "_.MVIEW" "L" "ON" "P" "") ) (princ) ) ; end of program
"Save Energy"
Did you find this reply helpful? If so please use the Accept as Solution
Did you find this reply helpful? If so please use the Accept as Solution
Solved! Go to Solution.