AutoCAD 2010/2011/2012 DWG Format
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Problem with Zoom "All"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I'm relatively new to this 2012 version, and I seem to encounter an issue with the Zoom "All" command. Basically the Zoom "All" command produces the same result as Zoom "Extents". I've reset my limits to a slight distance back from the profiles I'm working with, but it just doesn't seem to want to work. All of my work is typically done in Model Space if it matters.
Solved! Go to Solution.
Re: Problem with Zoom "All"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
If you need to Zoom Limits, try this lisp:
;ZOOM LIMITS
(defun C:ZL (/ ds1 pmx pt1 pt2)
(setq pt1 (getvar "LIMMIN"))
(setq pt2 (getvar "LIMMAX"))
(setq pmx (list (/ (+ (car pt1) (car pt2)) 2)
(/ (+ (cadr pt1) (cadr pt2)) 2)
)
)
(setq ds1 (- (cadr pt2) (cadr pt1)))
(command "zoom" "c" pmx ds1)
);end
Re: Problem with Zoom "All"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
The information below is listed within the Autodesk Exchange (help) under a generic "Zoom all" search. It states that it should work just fine as is, without use of a LISP routine. I know I'm comming up from R14, but it's a basic command. Does this feature just not work as intended any longer? I am up to date on my SP's as well. Thanks again ...
All
Zooms to display all visible objects and visual aids.
Adjusts the magnification of the drawing area to accommodate the extents of all visible objects in the drawing, or visual aids such as the grid limits (the LIMITS command), whichever is larger.
In the illustration on the right, the grid limits are set to a larger area than the extents of the drawing.
Because it always regenerates the drawing, you cannot use ZOOM All transparently.
Re: Problem with Zoom "All"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Don't know why this would work but after useing the command sequence
PLAN, World,
it now works as expected.
Re: Problem with Zoom "All"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
The lisp is for Zooming to your set Limits ALL THE TIME regardless: if you just wish to rely a core tool/command see if the other tip above is a fix for you, if not hang around and wait for another from someone else.
For me it's above getting it done on my terms, not find an obscure setting somewhere in the file. Weird I know ![]()
Re: Problem with Zoom "All"
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
COJonez ... That seems to work just fine ... Thanks ...
pendean ... Crazy as it sounds, I've been an ACAD user since the mid 80's and I have never used a LISP routine, ever ... I honestly don't even know where to begin with them ... Thank you for the tip all the same ...
