Osnap Lisp routine
Osnap Lisp routine
(OP)
Does anyone know of a lisp routine that will allow you to use hot keys instead of having to type end or pick the endpoint button? I would appreciate any suggestions.
Thanks
Thanks
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: Osnap Lisp routine
["F12"]_endp
then restart AutoCAD to have changes take effect, or use the "menu" command and reload acad.mns.
RE: Osnap Lisp routine
(defun C:LI () (command "LINE""QUICK,INT")(prin1))
(defun C:LE () (command "LINE""QUICK,END")(prin1))
(DEFUN C:LQ () (COMMAND "LINE""QUICK,QUAD")(PRIN1))
(defun C:LM () (command "LINE""QUICK,MID")(prin1))
(defun C:LN () (command "LINE""QUICK,NEA")(prin1))
(defun C:LC () (command "LINE""QUICK,CEN")(prin1))
Make sure that the combinations do not interfere with command you already currently use