nMenuFontSize = 12
DEFINE POPUP _medit MARGIN RELATIVE SHADOW COLOR SCHEME 4 FONT "Arial", nMenuFontSize
DEFINE BAR _mfi_save OF _medit PROMPT "\<Save" ;
FONT "Arial", nMenuFontSize ;
KEY CTRL+S, "Ctrl+S" ;
PICTRES _mfi_save ;
MESSAGE "Saves changes to the current file"
DEFINE BAR _mfi_savas OF _medit PROMPT "Save \<As..." ;
PICTRES _mfi_savas ;
FONT "Arial", nMenuFontSize ;
MESSAGE "Saves changes to the current file with a new name"
...