Keyboard command to change GRID Settings from rectangular to Isometric
Keyboard command to change GRID Settings from rectangular to Isometric
(OP)
After many years of doing 3D solid modeling, I still have some clients that want a 2D Isometric drawing. I'm very skilled at this but sometimes I need to change from Rectangular to Isometric Grid setting and back quickly. I have long used the GRID Settings at the bottom of my screen (ACAD 2008 Classic) to change this but I would like a keyboard shortcut to do it. Anyone know how to create one?
Thanks.
Frank Reid
Reid Engineering Services of Utah





RE: Keyboard command to change GRID Settings from rectangular to Isometric
Good luck and post back with results ?
Thanks -
C Fee
RE: Keyboard command to change GRID Settings from rectangular to Isometric
(DEFUN C:SS ()
(if (= (getvar "snapstyl") 0 ) (setvar "snapstyl" 1) (setvar "snapstyl" 0))
(princ)
)
then type (load"acad") or restart autocad
then try your new command SS