Hi
Does the following code help?
Macro "Add Menu"    // This macro adds the "Extra Menu" before the
"Window" menu    AddMenuItem("Extra Menu", "Before", "Window")   
endMacro
Menu "My Menu System"    // This menu item is the top-level title to be
// added to the main menu system:    MenuItem "Extra Menu" text: "Extra
Menu" key: alt_x menu "Extra Dropdown Menu"endMenu
Menu "Extra Dropdown Menu"    // This is the body of the drop-down menu
to be added    MenuItem "hello"  text: "Hello" key: alt_h do       
RunMacro("say hello")        endItem    Separator     MenuItem "bye" 
text: "Bye" key: alt_b do        RunMacro("say bye")       
endItemendMenu
Macro "say hello"    ShowMessage("Hello!")endMacro
Macro "say bye"    ShowMessage("Bye!")endMacro
Maptitude Mapping Software <http://www.caliper.com>  Group Moderator

--- In [email protected], "swag_ner_pth" <swag_ner_pth@...>
wrote:
>
> Hello,
>
> I've completed lesson 4 of the quickstart guide for the GISDK. What I
can't figure out is how to have multiple items/choices.
>

Reply via email to