- (defun C:A11()
- (vl-cmdf "qaflags" 1 "explode" (ssget "x") "" "qaflags" 0)
- (if (= (getvar "cmdactive") 0)
- (progn
- (vl-cmdf "change" (ssget "x") "" "p" "la" 0 "")
- (vl-cmdf "change" (ssget "x") "" "p" "c" "ByLayer" "")
- (vl-cmdf "change" (ssget "x") "" "p" "LT" "ByLayer" "")
- )
- )
- (princ)
- )
|