yawdapaah Posted May 27, 2009 Posted May 27, 2009 I'd like to add zoom extents on startup (per drawing). i find that i'm always doing it anyway. Quote
rkmcswain Posted May 27, 2009 Posted May 27, 2009 The "acaddoc.lsp" file is loaded each time a drawing is loaded. This file does not come with AutoCAD, so you may have to create it. Add this to it: [color=blue][font="Courier New"] (defun-q mystartup () (command "._zoom" "_E") (princ) ) (setq S::STARTUP (append S::STARTUP mystartup)) [/font][/color] Quote
BIGAL Posted May 28, 2009 Posted May 28, 2009 Why not get into the habit of zoom e then save and close, you can redefine say "close" etc to do other things such as what you want. Had a close that updated the time stamp in the drawing before saving and closing. 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.