You can use the keyboard to quickly switch between the layouts in the drawing, simply hold the CTRL key while pressing the Page Up/Page Down buttons, such as CTRL+PAGE DOWN to move to the right of the tabs.

Remembering selection sets is just as easy as points (above).  Use this syntax at the command prompt to remember a selection set.

Command: (setq sset (ssget))

Whenever AutoCAD requests objects to process within a command, simply provide it again with the ! prefixed symbol.

Command: MOVE
Select Objects: !sset

To remember a point (assign it to a variable), use this simple syntax at the command prompt.  This assigns the point you pick to a variable named ‘pnt’.  You can repeat this procedure to store several points with symbols like ‘pt1’, or ‘pointone’.

Command: (setq pnt (getpoint))

Anytime you want to refer to that point within the same drawing session, simply prefix it with an ! at the pick point prompt.

Base Point: !pnt

When you have multiple object snaps turned on that can be in effect for a given object (such as quadrant and center on a circle), you can press the tab key while hovering over the object to change the snap.

This little known command has a special purpose.  One case is when you have just created a block definition and want the source objects back.  Using an UNDO would undo the newly created block, the OOPS command brings the object back without undoing the block.

A second (more likely) case is when you simply want to undelete the last object(s) that were erased, without undoing.

We recently received a users drawing and found it to be redrawing and regenerating *extremely* slowly.  After a while we discovered that the VIEWRES was set to 20000 !!!  While there may be instances where you need to bump it up a little, don’t use a higher number than necessary.

Issue the VIEWRES command and answer Yes to the fast zooms, then enter the smallest number that gives smooth circles at most zoom levels.  If you zoom in tight and circles don’t look round simply issue the REGEN command.   You should be able to use 200 to 500 with good results.  This value is stored in the drawing.

If you would prefer not to see the starting splash screen which (to us) *feels* like it slows down the startup, follow this procedure.

  1. Right Click your Launch Icon, choose Properties.
  2. Click the Shortcut tab if not already there.
  3. In the Target field, after the “..acad.exe” text, put in a space followed by /nologo.

Make sure there is a space before and after the switch.  For Bricscad users, put in /l instead.