abra-CAD-abra Posted January 19, 2015 Posted January 19, 2015 Is it possible to suppress command line activity with a message, such as: (Prompt "\n*** Working, Please wait ......\n") During the time taken to process a lisp routine, or a number of lisp routines? This doesn't appear to work in the following format, however, it should be noted that I do use "command" in lisp routines. (Defun C:Test () (Prompt "\n*** Working, Please wait ......\n") (LispFunction1) (LispFunction2) (LispFunction3) (princ) ) Cheers. Quote
Ahankhah Posted January 19, 2015 Posted January 19, 2015 Suppresses command prompts: (setvar 'Cmdecho 0) Suppresses messages: (setvar 'Nomutt 1) Hides Command area: (command "_.COMMANDLINEHIDE") Quote
abra-CAD-abra Posted January 19, 2015 Author Posted January 19, 2015 Thank you Ahankhah, I think 'Nomutt' is what I am looking for, I will test it tomorrow. Cheers. Quote
BIGAL Posted January 21, 2015 Posted January 21, 2015 Another filedia 0 or 1 turns dialogue boxes on or off usefull in some cases. Note is not 100% for all commands. Quote
abra-CAD-abra Posted January 21, 2015 Author Posted January 21, 2015 Thanks guys, I am familiar with CMDECHO and FILEDIA. No matter how many system variables, I think I know, I always learn a new one! Cheers, 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.