home *** CD-ROM | disk | FTP | other *** search
- This file demonstrates how to make some simple menu customizations.
- To see the final result, select Modify... on the View->Menus menu, and
- load this sample file. You will see the menus change to a new
- configuration.
-
- To reset the Frame product to it's regular configuration, just restart
- the Frame product. See the reference manuals for more information on where
- to find the current set of menu names as well as the complete set of
- Command names.
-
- Examples in this file:
- 1. Define a new menu and add it to the menu bar
- 2. Remove a menu item.
- 3. Add a new shortcut
- 4. Move a menu item from one menu to another menu
-
-
- ************************************************************************
- * Example 1 *
- * *
- * Define a page design menu so that all of the page design commands *
- * can live on one menu *
- * *
- ************************************************************************
-
- *** Define a new menu ***
-
- <Menu PageDesignMenu <Label Page Design>>
-
-
- *** Add the PageDesignMenu to the menu bar ***
-
- <Add PageDesignMenu <Menu !MakerMainMenu>>
-
-
- *** Add some commands to the PageDesignMenu ***
-
- <Add LayoutNormal <Menu PageDesignMenu>>
- <Add MasterPageUsage <Menu PageDesignMenu>>
- <Add LayoutCommands <Menu PageDesignMenu>>
- <Add !Separator <Menu PageDesignMenu>>
- <Add HeadersAndFootersMenu <Menu PageDesignMenu>>
- <Add !Separator <Menu PageDesignMenu>>
- <Add SelectAll <Menu PageDesignMenu>>
- <Add Flow <Menu PageDesignMenu>>
- <Add !Separator <Menu PageDesignMenu>>
- <Add FormatDocument <Menu PageDesignMenu>>
- <Add RenamePage <Menu PageDesignMenu>>
- <Add FreezePagination <Menu PageDesignMenu>>
-
-
-
- ************************************************************************
- * Example 2 *
- * *
- * Remove the Headers And Footers menu from the Format menu *
- * because we just put this menu on the Page Design menu. *
- * *
- ************************************************************************
-
- <Remove HeadersAndFootersMenu <Menu FormatMenu>>
-
-
-
- ************************************************************************
- * Example 3 *
- * *
- * Add the shortcut Esc-fl to the command Flow. This shortcut is *
- * currently on the Format menu and it's shortcut is Esc-ol. The old *
- * shortcut Esc-ol will still work. A command can have more than one *
- * shortcut. *
- * *
- ************************************************************************
-
- <Modify Flow <KeySequence \!fl>>
-
-
- ************************************************************************
- * Example 4 *
- * *
- * Move the DocCompare menu item from the File->Utilities menu to the *
- * top of the Special menu. *
- * *
- ************************************************************************
-
- <Order UtilitiesMenu.DocCompare <First SpecialMenu>>
-
-