icalara1921 Posted November 1, 2022 Posted November 1, 2022 Hi all, Is there a way to set a shortcut for different dimension styles? For example: shift + 1 - will set DIM STYLE 1 shift + 2 - will call for DIM STYLE 2 This would be very handy when annotating complicated details. Thanks in advance! Quote
BIGAL Posted November 2, 2022 Posted November 2, 2022 Why not D1 D2 much easier. You can make as many little lisp defuns as you need, just load on start up say a lisp with all your short cuts. Just check that say d1 is not a command. You can use numbers if you want, I use 47 for setting my osnaps that I like. (defun c:d1 ( / ) (command "._-dimstyle" "_restore" "Dstyle1") ) (defun c:d2 ( / ) (command "._-dimstyle" "_restore" "Dstyle2") ) 1 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.