OMEGA-ThundeR Posted November 27, 2013 Posted November 27, 2013 Hi, Perhaps a simple question. I'm setting up an installation file in lisp form. I want 'status updates' show in the commandbar/Text window (F2) but i don't want them pushed out by all the commands it's running. 'Back in the days' i used batch files and you could hide lines/commands by adding the @ sign or something like ECHO OFF. Is there a way to hide command from the command bar but still show the text lines like (princ "\n Setting up toolbars...") ? Quote
Tharwat Posted November 27, 2013 Posted November 27, 2013 (setq echo (getvar 'cmdecho)) (setvar 'cmdecho 0) (command "_.*******") (setvar 'cmdecho echo) 1 Quote
sritter09 Posted January 30, 2017 Posted January 30, 2017 I know this is an old post but thanks Tharwat. worked perfectly and I will definitely save that one future coding... Quote
Tharwat Posted January 30, 2017 Posted January 30, 2017 I know this is an old post but thanks Tharwat. worked perfectly and I will definitely save that one future coding... Thank you for your feedback. 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.