totzky Posted February 16, 2009 Posted February 16, 2009 I will be using this for '06. I want to put this command at start up but I'm getting a message "Autocad Menu Utilities Loaded. *Cancel*" My code is something like this: (defun S::STARTUP () (command "CleanscreenON") (princ)) Anyone there willing to shed light on this. Quote
lpseifert Posted February 16, 2009 Posted February 16, 2009 Try adding this in your acaddoc.lsp file (command "cleanscreenon") ...worked when I tried it Quote
Lee Mac Posted February 16, 2009 Posted February 16, 2009 As quoted from ACAD Help: The startup LISP files (acad.lsp, acaddoc.lsp, and MNL) are all loaded into memory before the drawing is completely initialized. Typically, this does not pose a problem, unless you want to use the command function, which is not guaranteed to work until after a drawing is initialized. 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.