I have a command called ZO. I put this inside my startup ACAD.LSP file so it is ready at any time.
This Zoom Extents then types in .9X to give me a little outline of what Extents zoomed. This works great for MS or PS.
I have listed several others that I have in my ACAD.LSP file for Zoom that I use all the time as well. I posted commands below.
Hope this helps!
JRR!
(defun c:ZA ()
(command "ZOOM" "A")
(princ))
(defun c:ZE ()
(command "ZOOM" "E")
(princ))
(defun c:ZO ()
(command "ZOOM" "E" "ZOOM" ".9X")
(princ))
(defun c:9X ()
(command "ZOOM" ".9X")
(princ))
(defun c:ZP ()
(command "ZOOM" "P")
(princ))
(defun c:ZW ()
(command "ZOOM" "W")
(princ))
(defun c:ZZ ()
(command "ZOOM")
(princ))