Jump to content

Suppression of Command Line Activity During Lisp Processing


Recommended Posts

Posted

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.

Posted

Suppresses command prompts: (setvar 'Cmdecho 0)

Suppresses messages: (setvar 'Nomutt 1)

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

Posted

Thank you Ahankhah,

 

I think 'Nomutt' is what I am looking for, I will test it tomorrow.

 

Cheers.

Posted

Another filedia 0 or 1 turns dialogue boxes on or off usefull in some cases. Note is not 100% for all commands.

Posted

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,

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