Cadmeister Posted February 9, 2009 Posted February 9, 2009 Hi All, Can somone help me to create a lisp file that would allow me to toggle between layers? I need 3 specific views which will turn some layers on while keeping others on and will switch them with the other two commands. I just don't understand codes enough to create one myself. Thanks! Quote
alanjt Posted February 9, 2009 Posted February 9, 2009 layerstates does exactly that. however, if you are really wanting this, you just need something really simple. (defun c:mylayers ( / ) (command "_.layer" "_off" "*" "_y" "_on" "layer*,layer1,layer2,*storm*" "") (princ) ) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.