Dear all
autolisp needed layer (on, off, freeze, lock, isolate, thaw)
I WANT ADVANCE LAYER ON OF UTILITY
I’m using
(defun c TT () (command "layer" "th" "*" ""))
(defun c FF () (command "layer" "f" "*" ""))
(defun c on () (command "layer" "on" "*" ""))
(defun c oF () (command "layer" "off" "*" "" ""))
&
(defun c of ()
(setq ss (entsel "\n Select Entity Layer to Off :"))
(setq el (entget (car ss)))
(setq la (cdr (assoc 8 el)))
(command "layer" "off" la "")
(PRINC)
) |