Jump to content

Suppression of Command Line Activity During Lisp Processing


abra-CAD-abra

Recommended Posts

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.

Link to comment
Share on other sites

Suppresses command prompts: (setvar 'Cmdecho 0)

Suppresses messages: (setvar 'Nomutt 1)

Hides Command area: (command "_.COMMANDLINEHIDE")

Link to comment
Share on other sites

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,

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...