OdeToNo1 Posted March 3, 2009 Posted March 3, 2009 Hello- Is it possible to map a command to freeze / unfreeze a specific layer to a keyboard shortcut? I have two layers that I use a lot when working in 3D that I turn on and off all the time and it would save some clicking. Thanks. Quote
uddfl Posted March 3, 2009 Posted March 3, 2009 Do you want the same keyboard shortcut to toggle betwen Frozen/Thawed, or can you live with 2 different shortcuts? Quote
OdeToNo1 Posted March 3, 2009 Author Posted March 3, 2009 I think I'd actually prefer it to be different. Quote
uddfl Posted March 3, 2009 Posted March 3, 2009 Try these LISP functions. Change LAYER1 and LAYER2 to your layer names (defun c:LFR () ; freezes layers (command "_.layer" "_f" "LAYER1,LAYER2" "") (princ) ) (defun c:LTH () ; thaws layers (command "_.layer" "_t" "LAYER1,LAYER2" "") (princ) ) Quote
uddfl Posted March 3, 2009 Posted March 3, 2009 Sorry, I had a typo on the thaw one before (defun c:LTH () ; thaws layers (command "_.layer" "_t" "LAYER1,LAYER2" "") (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.