gosujohn Posted April 18, 2010 Posted April 18, 2010 Hi guys, Sometime ago, I downloaded from a website a LISP called breakobjects18 written by Charles from www dot theswamp dot org I love the LISP but have one small problem, the basic command is 'mybreak'. Its a little long for my tastes and I was wondering if there was anyway to shorten it like how you would edit Autocad's aliases. Thanks in advance! Quote
gile Posted April 18, 2010 Posted April 18, 2010 Hi, You can rename the command. Search for (defun c:mybreak in the code and replace c:mybreak by c:mbr so that the command name would be mbr. Another way is to define a new name (shortcut) adding a LISP expression at the end of the code: (defun c:mbr () (c:mybreak)) Quote
gosujohn Posted April 18, 2010 Author Posted April 18, 2010 Hi, You can rename the command. Search for (defun c:mybreak in the code and replace c:mybreak by c:mbr so that the command name would be mbr. Another way is to define a new name (shortcut) adding a LISP expression at the end of the code: (defun c:mbr () (c:mybreak)) Thanks for the fast response! will try that now 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.