AutoCAD 2002 :: Paperspace Zooming:: HEEEEEEEELP
AutoCAD 2002 :: Paperspace Zooming:: HEEEEEEEELP
(OP)
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!
Help Please... Clients in office Wednesday HEEEEEEEEEEEELP Please!





RE: AutoCAD 2002 :: Paperspace Zooming:: HEEEEEEEELP
Lothar
ADT 2004
ACAD 2002
RE: AutoCAD 2002 :: Paperspace Zooming:: HEEEEEEEELP
"Everybody is ignorant, only on different subjects." — Will Rogers
RE: AutoCAD 2002 :: Paperspace Zooming:: HEEEEEEEELP
;
(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*" "")
)
;