- Marcar como nuevo
- Favorito
- Suscribir
- Silenciar
- Suscribirse a un feed RSS
- Resaltar
- Imprimir
- Denunciar
Is there a way to switch layer states with the keyboard using the command line?
¡Resuelto! Ir a solución.
The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.
Is there a way to switch layer states with the keyboard using the command line?
¡Resuelto! Ir a solución.
This way you easily create your own Button(macro)
'_.-LAYER;_state;_restore;MyLayerState1;;;
or Command, like this Lisp sample
(defun c:LayStat1 nil (command "'_.-LAYER" "_state" "_restore" "MyLayerState1" "" "")(princ))
Sebastian