$FMHOME/fminit/groupsettings/SampleMenus

This file demonstrates how to make a completely new custom menu bar.
If you want to make customizations to the existing menu bar, then look
at fminit/[UILanguage]/SampleConfig (e.g.
fminit/usenglish/SampleConfig) for examples.

There are a number of ways to load menu customization files
automatically so that you see your customizations when you start
FrameMaker.  The fminit/groupsettings directory should contain menu
customization files which a "group" of people will use.  If a user has
the environment variable FMGROUPMENU set to a file name (e.g.
DocumentationMenus), and that file exists in this fminit/groupsettings
directory, then FrameMaker will automatically load that menu
customization file.

To load this file on-the-fly, select Modify... on the View->Menus
menu, and load this sample file.  You will see the menus change to a
new configuration.  (Use !vmc to get back to the regular menus.)

To reset FrameMaker to its regular configuration, just restart
FrameMaker.  See the Online Manuals, Changing Setup Files, Chapter 5
"Changing Menus and Commands" for more information on where to find
the current set of menu names as well as the complete set of Command
names.

The following example creates a custom menu bar menu bar for a class of
users who are simply going to type in text.  These users do not need
to use anchored frames, tables, graphics, etc.


Examples in this file:
1. Define a custom menu bar
2. Add existing menus and a new menu to the custom menu bar
3. Remove some menu items


 ************************************************************************
 *  Example 1								*
 *									*
 *  Define the custom menu bar.  FrameMaker has three menu bars: 	*
 *  Quick, Complete, and Custom.  You can customize all three menu	*
 *  bars.  Right now, we're just going to define the Custom menu bar.	*
 *									*
 ************************************************************************

<Menu !CustomMakerMainMenu	<Label Custom>>

 
 ************************************************************************
 *  Example 2								*
 *									*
 *  Add some of the existing menus which were defined by FrameMaker	*
 *  in fminit/[UILanguage]/[Product]/Menus (e.g. 			*
 *  fminit/usenglish/Maker/Menus).					*
 *									*
 ************************************************************************

<Add QuickFileMenu		<Menu !CustomMakerMainMenu>>
<Add QuickEditMenu		<Menu !CustomMakerMainMenu>>

<Menu VeryQuickFormatMenu	<Label Format>>
<Add VeryQuickFormatMenu	<Menu !CustomMakerMainMenu>>
   <Add FontMenu   	 		<Menu VeryQuickFormatMenu>>
   <Add SizeMenu   	 		<Menu VeryQuickFormatMenu>>
   <Add QuickStyleMenu 	 		<Menu VeryQuickFormatMenu>>
   <Add !Separator       		<Menu VeryQuickFormatMenu>>
   <Add QuickCharactersMenu 		<Menu VeryQuickFormatMenu>>
   <Add QuickParagraphsMenu   	    	<Menu VeryQuickFormatMenu>>

<Add QuickViewMenu		<Menu !CustomMakerMainMenu>>


 ************************************************************************
 *  Example 3								*
 *									*
 *  Remove the Menus menu from the View menu so that the user cannot	*
 *  change to the quick or complete menu set except through a shortcut.	*
 *									*
 ************************************************************************

<Remove !MenusMenu	<Menu QuickViewMenu>>

