PaulS00 Posted June 5, 2013 Posted June 5, 2013 Hello, When I use LAYISO, the layers I don't want shown only fade out. I want them to completely turn off. My CAD used to do this, then something changed. I need the other layers off so I don't snap to an unwanted Z elevation. Ideas? Thanks! Quote
rkent Posted June 5, 2013 Posted June 5, 2013 Watch the command line for your options, adjust there. Quote
danellis Posted June 6, 2013 Posted June 6, 2013 If it's of any use to anyone here are three very simple routines I use: LIO isolates selected layers with everything else turned off; LUN unisolates everything LIF isolates selected layers with everything else locked and faded. (DEFUN c:LIO () (COMMAND "LAYISO" "S" "OFF" "OFF" )) (DEFUN c:lun () (COMMAND "LAYUNISO")) (defun c:LIF () (command "LAYISO" "S" "L" "70")) dJE 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.