ynotrobits Posted April 7, 2012 Posted April 7, 2012 If I set startup to "1" then at startup, the user is offered four options: Open a drawing Start from scratch Use a template Use a wizard Once a choice from the above four options is made, from then on, "startup" defaults to the last option that was chosen. My question is whether or not there is a setting or registry entry where I can restrict the startup to always going to the "choose a template" screen regardless of the last choice made. Thanks for looking Quote
BlackBox Posted April 7, 2012 Posted April 7, 2012 I am unable to test this for myself, but will adding this to Acad.slp or AcadDoc.lsp not work? (if (/= 1 (getvar 'startup)) (setvar 'startup 1)) FWIW - Edwin's article on this topic may be useful: AutoCAD 2012: Option to start without opening a file Quote
ynotrobits Posted April 7, 2012 Author Posted April 7, 2012 Thanks for the response. The issue is not permanently setting the startup system variable to "1". The issue is: if the startup variable is set to "1" , can the default screen be "use a template" regardless of what screen was chosen in the previous instance? For example: If startup is set to "1" and in the last instance of AutoCad, the user selected the "start from scratch" screen, then the next time AutoCad is loaded, startup will display the "start from scratch" screen. (AutoCad apparantly defaults to the last choice) What I would like to do is (assuming startup is set to "1") is force AutoCad to always display the "Choose a template" screen as opposed to displaying the screen that was used in the last instance. Thanks again Quote
BlackBox Posted April 8, 2012 Posted April 8, 2012 Sounds like the registry (or local %AppData%) is storing the last used screen. If you can identify the file or registry key being used, then you can control during startup or drawing open. Quote
Dadgad Posted April 8, 2012 Posted April 8, 2012 Sounds like you want to use _NEW as your startup command, which will take you directly to your template dialog window. Set you STARTUP system variable to '0', and delete any default QNEW template selection which may have been designated in your OPTIONS > FILES > none .......... Set like in the image you will get what you are hoping for. 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.