[ Usenet FAQs | Search | Web FAQs | Documents | RFC Index ]
    Search the FAQ Archives

Part1 - Part2 - Single Page

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?


[27.1] How to do an unlimited number of user prompts? [new]


  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))



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 | Search | Web FAQs | Documents | RFC Index ]

Send corrections/additions to the FAQ Maintainer:
rurban@xarch.tu-graz.ac.at (Reini Urban)

Last Update July 24 2008 @ 00:12 AM

© 2008 FAQS.ORG. All rights reserved.