Eng-Tips is the largest forum for Engineering Professionals on the Internet.

Members share and learn making Eng-Tips Forums the best source of engineering information on the Internet!

  • Congratulations JStephen on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

AutoCAD 2002 :: Paperspace Zooming:: HEEEEEEEELP 1

Status
Not open for further replies.

Misspia78

Materials
Joined
Sep 2, 2004
Messages
4
Location
US
Using CAD 2002. After laying out vports in paperspace I am trying to maneuver back and forth between between windows and the computer is automatically refresshing all vports to Zoom All.

Help Please... Clients in office Wednesday HEEEEEEEEEEEELP Please!
 
Maybe: thread555-77804

Lothar

ADT 2004
ACAD 2002
 
While in paperspace, and maneuvering around the viewport windows into modelspace, you will want to lock the viewport scales first. You can click on a viewport and then enter "ch" (change) on the command line. You can then select Display Locked to see the effects of locking the viewport.

"Everybody is ignorant, only on different subjects." — Will Rogers
 
I modified my Acad.lsp file to include the following: Each assumes that the viewports are on layer DefPoints or VPLayer (or layers starting with Def and VP). I think of them as (V)iewport(L)ock, (V)iewport(U)nlock, (V)iewport(F)reeze and (V)iewport(T)haw

;
(DEFUN C:VL () ; Lock all viewports
(COMMAND "LAYER" "THAW" "DEF*,VP*" "")
(COMMAND "MVIEW" "LOCK" "ON" "ALL" "")
(COMMAND "LAYER" "FREEZE" "DEF*,VP*" "")
)
(DEFUN C:VU () ; Unlock all viewports
(COMMAND "LAYER" "THAW" "DEF*,VP*" "")
(COMMAND "MVIEW" "LOCK" "Off" "ALL" "")
(COMMAND "LAYER" "FREEZE" "DEF*,VP*" "")
)
;
(DEFUN C:VT () ; Thaw the viewport layers
(COMMAND "LAYER" "THAW" "DEF*,VP*" "")
)
(DEFUN C:VF () ; Freeze the viewport layers
(COMMAND "LAYER" "FREEZE" "DEF*,VP*" "")
)
;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top