Is there a simple way of automating layers on/off...
Is there a simple way of automating layers on/off...
(OP)
I'm using AutoCAD 2002. Yes I know I'm dated.
This is what I'm trying to do. Let say you have layer a and layer b on. By those being on autocad will automatically shut off or freeze layer c and layer d and vice versa.
Is there an easy way to do this without having to write a lisp routine?
This is what I'm trying to do. Let say you have layer a and layer b on. By those being on autocad will automatically shut off or freeze layer c and layer d and vice versa.
Is there an easy way to do this without having to write a lisp routine?
RE: Is there a simple way of automating layers on/off...
_________________________________________
NX8.0, Solidworks 2014, AutoCAD, Enovia V5
RE: Is there a simple way of automating layers on/off...
http://www.ellenfinkelstein.com/acadblog/tutorial-...
_________________________________________
NX8.0, Solidworks 2014, AutoCAD, Enovia V5
RE: Is there a simple way of automating layers on/off...
Right in front of my face. Thanks for the help.
RE: Is there a simple way of automating layers on/off...
(DEFUN C:L1 ()
(COMMAND "LAYER" "OFF" "A,B" "")
(COMMAND "LAYER" "ON" "C,D" "")
)
(DEFUN C:L2 ()
(COMMAND "LAYER" "On" "A,B" "")
(COMMAND "LAYER" "Off" "C,D" "")
)