How to Auto Zoom Extents when saving?
How to Auto Zoom Extents when saving?
(OP)
I remember there being a dialog box to enter script in when you are saving, but I am unable to locate it now. Anyone have any tips?
Thanks
Thanks
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
How to Auto Zoom Extents when saving?
|
RE: How to Auto Zoom Extents when saving?
^C^CZOOM;E;QSAVE;
RE: How to Auto Zoom Extents when saving?
RE: How to Auto Zoom Extents when saving?
RE: How to Auto Zoom Extents when saving?
double click "thisdrawing" on the left tree.
a window will be opened.
then search for the "AcadDocument_BeginSave" method
add this in the begin save code
CODE
ThisDrawing.SendCommand "^^Ctm 1 "
ThisDrawing.SendCommand "^^Cz e "
End Sub
RE: How to Auto Zoom Extents when saving?
add "ms_" where the "underscore" is a "space (or semicolon-";" will do) just after the "^c^c" combo. You don't need any visual basic scripts or such. 3 characters added to the beginning if the qsave script in ipsiefert's and you're done.
RE: How to Auto Zoom Extents when saving?