Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have created a lisp to change the elevation of a selected point, but I can't seem to pass the variable to the change command in my lisp
Please help
(defun c:chpt ( / newel s ) (if (setq s (entsel "\Select point to change")) (setq newel (getreal "\nEnter new elevation: ")) (COMMAND "CHANGE" s "" "P" "E" newel "") ) (princ) )
Solved! Go to Solution.