[Search tip detail and code files using keywords, tip number, author name, etc ]
 
Zoom to the Last Created Object
Tip# 4244 By Chris Wade On 27-Jan-2014
0
Rated By 0 users
Categories : Zoom
Software type : AutoCAD 2014
Rename File To : No Files to download.
Use this routine to quickly zoom to the last object drawn.

This AutoCAD tip comes from Chris Wade, who uses the routine to quickly zoom to the last object drawn.

"This is very handy when inserting blocks or xrefs or when pasting something into a drawing and for some reason it isn't visible on the screen."

    (defun c:zo ()
     (vl-cmdf ".zoom" "o" (entlast) "")
    )

Notes from Cadalyst tip reviewer R.K. McSwain: This is a good idea and a quick shortcut to a feature that many people may not even know about, and that is the ability to zoom to a particular object.
 

 

Average Rating:
0


User comments
Comment by Maeding,James
Posted on 2014-02-03 13:35:44
or to loop through objects selected by ssget x and some filter criteria, nice!