totzky Posted February 16, 2009 Share 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 Link to comment Share on other sites More sharing options...
JohnM Posted February 16, 2009 Share Posted February 16, 2009 look up S::STARTUP in the help files Quote Link to comment Share on other sites More sharing options...
lpseifert Posted February 16, 2009 Share Posted February 16, 2009 Try adding this in your acaddoc.lsp file (command "cleanscreenon") ...worked when I tried it Quote Link to comment Share on other sites More sharing options...
Lee Mac Posted February 16, 2009 Share 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 Link to comment Share on other sites More sharing options...
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.