Jump to content

Zooming in and out?


criehle

Recommended Posts

Sometimes I zoom in using the roller and the program will not allow me to zoom back out even though there is more of the drawing to show. Sometimes zoom to extent does not even work Why does it do this? I'm using AutoCAD Map 2009

Link to comment
Share on other sites

Hi,

 

I am using Map 3d 2009 also, but have not encountered any zooming issues.

 

May not be very useful, but perhaps next time you can't zoom back with mouse try zoom via toolbar or keyboard command. Could point to a problem with mouse.

 

Zoom extents not working seems odd though. Does it do a partial zoom? or nothing at all?, maybe there is a dockable window not fully docked, but floting on workspace, and inhibiting full view of your workspace.

Link to comment
Share on other sites

I got the same problem sometimes and i fix it using this LSP..

 

(defun c:ww(/ p1 x)

(setvar "cmdecho" 0)

(prompt "\nZoomOut")

(setq p1 (getpoint "\nCenter to ZoomOut? "))

(setq x "y")

(while x

(command "zoom" "c" p1 ".5x")

(setq p1 (getpoint "\nCenter to ZoomOut? "))

(if (= p1 nil) (setq x nil)))

(princ))

 

------

peace out

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...