Shortcuts

AutoCAD VGO Shortcut : VIEWGO : Restores a named view

If you need a clear, beginner-friendly guide to the viewgo shortcut used to restore named views in AutoCAD, this article explains what it is, how to use it step-by-step, why it may fail, alternative commands, practical examples, troubleshooting, and useful tips. Bolded terms highlight important commands and concepts.


What is the viewgo-shortcut?

The viewgo shortcut refers to the action of restoring a named view in AutoCAD. Some setups provide a direct alias or script named VIEWGO (or similar). The standard, built-in AutoCAD commands to achieve the same result are:

  • VIEW — opens the View Manager GUI for creating, renaming and restoring named views.
  • -VIEW — the command-line version of the View Manager; useful for scripting and precise restores.
  • In many users’ workflows a custom alias or script called VIEWGO may be created to quickly restore a view.

A named view is a saved camera position, zoom and orientation in a drawing. Restoring a named view returns the Model space (or the active viewport) to the saved viewpoint.


Explanation: what a named view stores and when to use it

  • A named view stores the center point, zoom level, and view direction (plan, isometric, etc.). It does not change layers or objects unless you saved a specific Layer state at the same time.
  • Use named views when you frequently need to jump to specific parts of a model, recall a particular orientation (e.g., 3D isometric), or prepare consistent views for presentations and layout viewports.
  • Named views are stored in the drawing file and can be included when you export or reference the drawing.
Read Also:  AutoCAD MSM Shortcut : MARKUP : Opens The Markup Set Manager

How to use viewgo-shortcut (step-by-step)

Below are multiple ways to restore a named view: using the View Manager GUI, the command-line, and a direct alias if available.

1) Create a named view (if you don’t already have one)

  1. Type VIEW and press Enter to open the View Manager dialog.
  2. Click New, provide a name (for example: “TopPlan” or “WindowA”), set options (if needed), and click OK.
  3. Optionally click Apply to save the current view.

Or (command-line method):

  1. Type -VIEW and press Enter.
  2. Type N (for New) and press Enter.
  3. Enter the view name and the values requested (or accept defaults).

2) Restore a named view in model space (View Manager)

  1. Type VIEW and press Enter.
  2. In the View Manager, select the desired named view.
  3. Click Set Current or Restore (depending on your AutoCAD version).
  4. Close the dialog — your drawing view will update.

3) Restore a named view using the command line (-VIEW)

  1. Type -VIEW and press Enter.
  2. Type R (for Restore) and press Enter.
  3. Type the view name exactly as saved and press Enter.
  4. The view will be restored without opening the GUI.

This method is ideal for keyboard-focused workflows and for scripting.

4) Using a VIEWGO alias or custom shortcut

  • If your installation includes a VIEWGO alias/script, type VIEWGO then the view name and press Enter. The exact syntax depends on how the alias was defined.
  • If VIEWGO is not available, create a simple alias in your acad.pgp (AutoCAD Program Parameters) file to run -VIEW,R, or a LISP routine that restores the named view.

5) Restore a named view inside a layout viewport

  1. Double-click inside the viewport to make it current (or use MSPACE).
  2. Use -VIEW > R > (or use the View Manager) to restore the view for that viewport.
  3. Lock the viewport if you want to prevent accidental changes (select viewport → Properties → Display Locked = Yes).

Examples (before / after)

Example 1 — Zoomed into a small area:

  • Before: You are zoomed into a detail at 1:200 scale and want to return to the overall building.
  • Action: Type -VIEWR → “OverallPlan”.
  • After: The view returns to the saved overall plan extent and orientation.

Example 2 — Changing from isometric to plan:

  • Before: The view is isometric and you need Top plan.
  • Action: Restore a named view called “TopPlan” via VIEW dialog or -VIEW.
  • After: The camera switches to the plan orientation you saved.

Why viewgo-shortcut doesn’t work — causes and fixes

Common reasons a view restore fails and how to fix each issue:

  • The named view doesn’t exist

    • Fix: Open VIEW manager to check the list or type -VIEWL (List) to see available names. Recreate the view if needed.
  • You typed the view name incorrectly (AutoCAD is exact)

    • Fix: Ensure spelling and case match (AutoCAD matches exact name). Use the View Manager to avoid typing errors.
  • The VIEWGO alias or script isn’t defined on your system

    • Fix: Use -VIEW instead, or add a custom alias to acad.pgp or a LISP routine.
  • You’re trying to restore a model-space view while a locked viewport or paper space is active

    • Fix: Double-click inside the target viewport (MSPACE) or make model space current, then restore the view; unlock viewport if necessary.
  • Named views were erased or the drawing is corrupted

    • Fix: Check backups or recover the file (use RECOVER, AUDIT, or restore from a previous version).
  • Layer states or annotation scales differ between saved view and current workspace

    • Fix: Confirm layer visibility and annotation scale; consider saving and restoring layer states separately (LAYERS command → Layer States Manager).
  • Saved view was created in another drawing or reference

    • Fix: Named views are drawing-specific. Import or recreate views in the current drawing, or use External reference views consistently.
  • View is being overridden by a viewport scale or settings

    • Fix: Ensure the viewport is not locked or that the viewport scale matches the saved view scale.

Alternative commands and related features

  • VIEW — View Manager GUI (create, restore, delete named views).
  • -VIEW — Command-line View Manager (for scripting and exact restores).
  • VPOINT — Controls the viewing direction in 3D (useful with views).
  • PLAN — Sets view to the current UCS or World top (PLAN W).
  • ZOOM (and ZOOM Previous, ZOOM Extents) — Quick zoom options if named views aren’t available.
  • UCS and Named UCS — Save and restore Coordinate system orientation, often used with views in 3D workflows.
  • Layer States Manager — Restore layer visibility or properties that may accompany a view.
  • Quick View Layouts / Quick View Drawings — For switching layouts/drawings quickly (not named views but useful for presentation switching).

Tips and best practices

  • Always use meaningful names for views (e.g., “Level1-Plan”, “WindowSector-A”, “Iso-SE”) for faster recall.
  • Use the -VIEW command in scripts and LISP for automation and batch operations.
  • When working with viewports on paper space, always activate the viewport before restoring a view, then lock the viewport once correct.
  • Keep a backup of important named views by exporting settings or maintaining a template (.DWT) with your common named views.
  • If you use a custom VIEWGO alias, document it and distribute it among your team to maintain consistent workflows.
  • Use Audit and Purge regularly if you see strange behavior with named objects like views.

FAQ

What is the easiest way to restore a named view if VIEWGO is not available?

Use the command-line method: type -VIEW, press Enter, type R (Restore), press Enter, then type the exact view name and press Enter. This restores the view without requiring a GUI alias.

Can named views be used in paper space viewports?

Yes. Make the viewport current (double-click inside it or use MSPACE), then restore the named view. After restoring, lock the viewport to prevent accidental changes.

How do I add a VIEWGO alias if it’s missing?

Edit your acad.pgp file and add a custom alias line or create a small AutoLISP/SCRIPT routine that calls -VIEW, R, and a prompt for the view name. Restart AutoCAD or reload the alias file to activate it. (Be careful editing acad.pgp — back it up first.)

Why does restoring a view change the annotation scale or Text size in viewports?

Named views restore camera position and zoom, but viewport scale and annotation scale can interact. Ensure the viewport’s annotation scale is set appropriately after restoring, and consider saving consistent scale workflows with layer and annotation standards.

How can I see all named views in a drawing?

Open the View Manager with VIEW to see all saved named views. Using -VIEW on the command line with the List option (if prompted) or checking the drawing’s settings can also show saved names.

Does restoring a named view affect layers or object properties?

No — named views do not change layer states or object properties by default. If you need layer visibility restored along with the view, use the Layer States Manager to save/restore layer states separately.

What should I do if the view restore command returns an error or nothing happens?

Check these items: the view name exists, you are in the proper space (model vs viewport), any custom alias is defined, and the drawing isn’t corrupted. Run AUDIT, RECOVER, or open the View Manager to verify the named view. If using a custom script, check it for errors.

Can I use named views across different drawings?

Named views are saved within a drawing. To reuse them, save a drawing as a template (.DWT) with the named views, or export and import views via script or by copying them into a template/drawing.


Read Also:  AutoCAD MLC Shortcut : MLEADERCOLLECT : Organizes Selected Multileaders That Contain Blocks Into Rows Or Columns, And Displays The Result With A Single Leader