Customizing your own AutoCAD Menus with RGDI Commands
==========================================================

===AutoCAD Release 10===

In a separate file on this disk is a complete AutoCAD Release 10 menu
(RACAD10.MNU) that incorporates commands specific to the RGDI
Intelligent Graphics Controller.  If you wish to use this menu in place of
your regular AutoCAD menu, rename it ACAD.MNU and copy it to your AutoCAD
directory.  You also can load it manually by copying it to your AutoCAD
directory as RACAD10.MNU, then use the MENU command from the graphics editor
to load RACAD10.

This file contains the same menu code, broken out so that you can 
incorporate RGDI commands into your custom AutoCAD menus.

The RGDI commands and their functions are listed below:

  ^L (CTRL-L)
     Pops up the CADView birdseye view transparently.
  RZALL
     Zooms to the extents of the display-list without a REGEN.
  RUPDATE
    Manually updates the display-list by performing an AutoCAD redraw.
  RSTATUS
    Displays the display-list memory available and used and the number of
    erased vectors and solids in the display-list (if any).
  RGHOST
    Allows selected colors in the display list
    to be turned on and off
  RAUI
    Allows dynamic customization of the AUI screen colors
 
You can use your favorite text editor to insert the following sections into
your custom menu.  Do not copy the ..Start of... and ...End of... lines,
but do copy everything in between.

Copy the following section into your AutoCAD Release 10 menu after the
***POP8 AUI menu.

...Start of area to copy to AutoCAD Release 10 menu...
***POP9
[RGDI]
[CADView]^L
[RZAll]^C^CRZALL
[RGHOST]^C^Crghost
[RAUI]^C^Craui
[~--  ]
[RStatus]^C^CRSTATUS
[RUpdate]^C^CRUPDATE

...End of area to copy to AutoCAD Release 10 menu...

The following section adds the same commands to the AutoCAD Release 10
screen menu.  Insert the next section of code into the root section of the
first AutoCAD menu.  For example, to ensure that the menu will be visible
on the screen in all resolutions, you should leave two spaces after the
[SAVE:] command on the standard AutoCAD root menu.

...Start of area to copy to AutoCAD Release 10 menu...

[CADView]^L
[RZALL]^C^CRZALL
[RGHOST]^C^Crghost
[RAUI]^C^Craui

[RSTATUS]^C^CRSTATUS
[RUPDATE]^C^CRUPDATE
...End of area to copy to AutoCAD Release 10 menu...

The section below adds RGDI commands to the ***BUTTONS
section of the standard AutoCAD Release 10 menu.  It REPLACES the
***BUTTONS section already in the menu.  This allows you to use the
buttons on your digitizer puck to execute RGDI commands
(depending on how many definable buttons you have.)

...Start of area to copy to AutoCAD Release 10 menu...
***BUTTONS
;
^L
^C^CRZALL
^C^CRSTATUS
^C^CRUPDATE
$p1=*
^c^c
^B
^O
^G
^D
...End of area to copy to AutoCAD Release 10 menu...
