|
Top Document: comp.cad.autocad AutoLISP FAQ (part 2/2) - samples, code Previous Document: [27] How to break a command in Lisp? Next Document: [28] How to decode ACIS internal geometry with Lisp? See reader questions & answers on this topic! - Help others by sharing your knowledge To let the user end any selected command without having to write code for every possible option, just repeat (command PAUSE) until the command is ended. ;; Sample by Owen Wengerd (command "_ARC") (while (= 1 (logand (getvar "CMDACTIVE") 1)) (command PAUSE)) User Contributions:Top Document: comp.cad.autocad AutoLISP FAQ (part 2/2) - samples, code Previous Document: [27] How to break a command in Lisp? Next Document: [28] How to decode ACIS internal geometry with Lisp? Part1 - Part2 - Single Page [ Usenet FAQs | Web FAQs | Documents | RFC Index ] Send corrections/additions to the FAQ Maintainer: rurban@xarch.tu-graz.ac.at (Reini Urban)
Last Update March 27 2014 @ 02:11 PM
|

Comment about this article, ask questions, or add new information about this topic: