oldsoftboss Posted October 6, 2011 Posted October 6, 2011 I have a project that has half the building square, and half is at an angle of 10 deg I seem to be constantly typing: UCS [enter] Z [enter] 10 [enter] then to change it back: UCS [enter] Z [enter] -10 [enter] Would like to make a couple of keyboard shorcuts to carry out theses commands. Is this possible? Thanks, Dave. Quote
lpseifert Posted October 6, 2011 Posted October 6, 2011 (defun c:z+ () (command "ucs" "z" "10")) (defun c:z- () (command "ucs" "z" "-10")) Quote
oldsoftboss Posted October 6, 2011 Author Posted October 6, 2011 Thanks for that, works a treat. 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.