Ajmal Posted July 20, 2020 Posted July 20, 2020 “AJMAL” is my function I need shortcut “AJ” So I will put “defun c:aj()” But I need shortcut also full also, how I will set the “defun” (“aj” and “ajmal” also) Quote
mstb Posted July 20, 2020 Posted July 20, 2020 2 hours ago, Ajmal said: “AJMAL” is my function I need shortcut “AJ” So I will put “defun c:aj()” But I need shortcut also full also, how I will set the “defun” (“aj” and “ajmal” also) (defun C:aj () (c:ajmal) ) Quote
Ajmal Posted July 20, 2020 Author Posted July 20, 2020 5 minutes ago, mstb said: (defun C:aj () (c:ajmal) ) this is creating a another function i need only 2 command for same function Quote
ronjonp Posted July 20, 2020 Posted July 20, 2020 Try it ... two commands same code called? (defun c:ajmal nil (alert "AJMAL!") (princ)) (defun c:aj nil (c:ajmal)) Quote
BIGAL Posted July 20, 2020 Posted July 20, 2020 If you type aj the autocorrect will display ajmal but you must pick. I had a defun "c:goto" but my fingers always typed "goot: so I added that as well like ronjonp 2 defuns. 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.